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

5 lines
139 B
Ruby

class RemoveAuctionsNotNullConstraints < ActiveRecord::Migration[6.0]
def change
change_column_null :auctions, :uuid, true
end
end