2022-12-20 16:05:26 +01:00
|
|
|
class CreateMembers < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
create_table :members do |t|
|
|
|
|
t.string :name
|
2022-12-25 13:13:11 +01:00
|
|
|
t.string :bio
|
|
|
|
t.string :picture
|
2022-12-20 16:05:26 +01:00
|
|
|
t.boolean :public
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|