mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
7 lines
320 B
Ruby
7 lines
320 B
Ruby
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);")
|
|
end
|
|
end
|
|
|