13 lines
224 B
Ruby
13 lines
224 B
Ruby
class CreateMembers < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :members do |t|
|
|
t.string :name
|
|
t.string :bio
|
|
t.string :picture
|
|
t.boolean :public
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|