missing parenthesis

This commit is contained in:
Georg Kahest 2016-10-04 13:26:16 +03:00
parent f3f556869c
commit 0aebd9596c

View file

@ -1,7 +1,7 @@
class AdduuidIndexToEppLogs < ActiveRecord::Migration
def change
ApiLog::EppLog.connection.execute( "CREATE INDEX CONCURRENTLY epp_logs_uuid ON epp_logs USING btree uuid;")
ApiLog::ReppLog.connection.execute( "CREATE INDEX CONCURRENTLY repp_logs_uuid ON repp_logs USING btree uuid;")
ApiLog::EppLog.connection.execute( "CREATE INDEX CONCURRENTLY epp_logs_uuid ON epp_logs USING btree (uuid);")
ApiLog::ReppLog.connection.execute( "CREATE INDEX CONCURRENTLY repp_logs_uuid ON repp_logs USING btree (uuid);")
end
end