mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
9 lines
259 B
Ruby
9 lines
259 B
Ruby
class AddLogMatchingColumn < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
ApiLog::EppLog.connection.execute("ALTER TABLE epp_logs ADD COLUMN uuid varchar;")
|
|
ApiLog::ReppLog.connection.execute("ALTER TABLE repp_logs ADD COLUMN uuid varchar;")
|
|
|
|
end
|
|
end
|