class CreateFinancialAidQuestions < ActiveRecord::Migration[6.1]
  def change
    create_table :financial_aid_questions do |t|
      t.string :question, null: false
      t.string :description
      t.integer :answer_type, null: false, default: 0
      t.integer :area, null: false
      
      t.timestamps
    end
  end
end
