mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
9 lines
195 B
Ruby
9 lines
195 B
Ruby
class ChangeAuctionsStatusToString < ActiveRecord::Migration[6.0]
|
|
def change
|
|
change_column :auctions, :status, :string
|
|
|
|
execute <<-SQL
|
|
DROP type auction_status;
|
|
SQL
|
|
end
|
|
end
|