parent
1acc369774
commit
29bd105072
10 changed files with 115 additions and 15 deletions
5
db/migrate/20260420181729_add_closed_at_to_user.rb
Normal file
5
db/migrate/20260420181729_add_closed_at_to_user.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddClosedAtToUser < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
add_column :users, :closed_at, :datetime
|
||||
end
|
||||
end
|
||||
5
db/migrate/20260420210736_add_opened_at_to_vote.rb
Normal file
5
db/migrate/20260420210736_add_opened_at_to_vote.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddOpenedAtToVote < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
add_column :votes, :opened_at, :datetime
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue