school_app/db/migrate/20250908173218_create_stude...

13 lines
229 B
Ruby

class CreateStudents < ActiveRecord::Migration[8.0]
def change
create_table :students do |t|
t.string :name
t.string :school
t.integer :standard
t.string :place
t.timestamps
end
end
end