mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 21:54:48 +02:00
7 lines
325 B
Ruby
7 lines
325 B
Ruby
class AdduuidIndexToEppLogs < ActiveRecord::Migration[6.0]
|
|
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
|
|
|