mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 14:44:47 +02:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
class ChangeAuctionsStatus < ActiveRecord::Migration[6.0]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
execute <<-SQL
|
|
ALTER TYPE auction_status ADD VALUE 'domain_registered' AFTER 'payment_received';
|
|
SQL
|
|
end
|
|
end
|