class CreateTeachers < ActiveRecord::Migration[8.0]
def change
create_table :teachers do |t|
t.string :name
t.string :school
t.string :subject
t.string :place
t.timestamps
end