mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 05:04:03 +00:00
13 lines
245 B
Ruby
13 lines
245 B
Ruby
|
|
class CreateQuestions < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :questions do |t|
|
||
|
|
t.string :title
|
||
|
|
t.references :question_type
|
||
|
|
t.integer :conference_id
|
||
|
|
t.boolean :global
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|