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
418 B
16 lines
418 B
5 years ago
|
class CreateExaminationItems < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :examination_items do |t|
|
||
|
t.references :examination_bank, index: true
|
||
|
t.references :item_bank, index: true
|
||
|
t.string :name
|
||
|
t.integer :item_type, default: 0
|
||
|
t.integer :difficulty, default: 1
|
||
|
t.float :score, default: 0
|
||
|
t.integer :position, default: 0
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|