mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
18 lines
431 B
Ruby
18 lines
431 B
Ruby
class CreateStudents < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :students do |t|
|
|
t.string :name
|
|
t.string :teacher
|
|
t.date :birthdate
|
|
t.string :gender
|
|
t.string :age
|
|
t.string :ethnicity
|
|
t.integer :recipient_id
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_column :questions, :for_recipient_students, :boolean, default: false
|
|
add_column :attempts, :student_id, :integer
|
|
end
|
|
end
|