mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
276 B
Ruby
14 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|