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.
16 lines
399 B
16 lines
399 B
5 years ago
|
class CreateExaminationBanks < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :examination_banks do |t|
|
||
|
t.string :name
|
||
|
t.integer :difficulty, default: 1
|
||
|
t.references :user, index: true
|
||
|
t.boolean :public, default: 0
|
||
|
t.integer :quotes, default: 0
|
||
|
t.references :sub_discipline, index: true
|
||
|
t.integer :duration
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|