You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
431 B
19 lines
431 B
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
|