Add registration deadline field to auction model

This commit is contained in:
Alex Sherman 2020-04-17 17:03:45 +05:00
parent 1a58d85f15
commit c6fd78b4cd
2 changed files with 449 additions and 17 deletions

View file

@ -0,0 +1,5 @@
class AddRegistrationDeadlineDateToModels < ActiveRecord::Migration[5.2]
def change
add_column :auctions, :registration_deadline, :datetime
end
end