internetee-registry/db/migrate/20181212145914_change_auctions_uuid_to_not_null.rb
Artur Beljajev 42e8f86dae Integrate auction
Closes #874
2019-01-18 18:06:54 +02:00

5 lines
130 B
Ruby

class ChangeAuctionsUuidToNotNull < ActiveRecord::Migration
def change
change_column_null :auctions, :uuid, false
end
end