mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
9 lines
190 B
Ruby
9 lines
190 B
Ruby
class ChangeAuctionsStatusToString < ActiveRecord::Migration
|
|
def change
|
|
change_column :auctions, :status, :string
|
|
|
|
execute <<-SQL
|
|
DROP type auction_status;
|
|
SQL
|
|
end
|
|
end
|