adding teacher profiles

This commit is contained in:
2023-01-15 14:52:40 +02:00
parent 45f59f174b
commit 750bd76a7e
21 changed files with 288 additions and 32 deletions

View File

@ -0,0 +1,12 @@
class CreateTeachers < ActiveRecord::Migration[7.0]
def change
create_table :teachers do |t|
t.string :name , null: false
t.text :bio , null: false
t.string :picture , null: false
t.references :member, null: false, foreign_key: true
t.timestamps
end
end
end