class CreateQuestions < ActiveRecord::Migration def change create_table :questions do |t| t.string :text t.integer :question_type, default: 0 t.timestamps null: false end end end