create members

This commit is contained in:
2022-12-20 17:05:26 +02:00
parent 3c0d125990
commit d2890636fd
19 changed files with 308 additions and 27 deletions

View File

@ -0,0 +1,10 @@
class CreateMembers < ActiveRecord::Migration[7.0]
def change
create_table :members do |t|
t.string :name
t.boolean :public
t.timestamps
end
end
end