Allow closing accounts

Closes #37
This commit is contained in:
ricola 2026-04-20 14:17:52 -06:00
parent 1acc369774
commit 29bd105072
10 changed files with 115 additions and 15 deletions

View file

@ -0,0 +1,5 @@
class AddClosedAtToUser < ActiveRecord::Migration[7.2]
def change
add_column :users, :closed_at, :datetime
end
end

View file

@ -0,0 +1,5 @@
class AddOpenedAtToVote < ActiveRecord::Migration[7.2]
def change
add_column :votes, :opened_at, :datetime
end
end