Add missing migrations

This commit is contained in:
ricola 2025-04-06 17:04:31 -06:00
parent a2e41bdc2d
commit d81c2b2ccf
3 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,8 @@
class CreateOrganizers < ActiveRecord::Migration[7.2]
def change
create_table :organizers do |t|
t.belongs_to :vote
t.belongs_to :user
end
end
end