internetee-registry/db/migrate/20181212145914_change_auctions_uuid_to_not_null.rb
2021-04-26 18:54:26 +05:00

5 lines
135 B
Ruby

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