Sha256: 88171aa6b7c416a668163b07a7a31e0ecbd87c66697df56b23353b9058a7f20a
Contents?: true
Size: 820 Bytes
Versions: 13
Compression:
Stored size: 820 Bytes
Contents
# This migration comes from fe_engine (originally 20131003044250) class CreateReferenceSheets < ActiveRecord::Migration[4.2] def change create_table Fe::ReferenceSheet.table_name do |t| t.integer :question_id t.integer :applicant_answer_sheet_id t.datetime :email_sent_at t.string :relationship t.string :title t.string :first_name t.string :last_name t.string :phone t.string :email t.string :status t.datetime :submitted_at t.datetime :started_at t.string :access_key t.timestamps end add_column Fe::Element.table_name, :related_question_sheet_id, :integer add_index Fe::ReferenceSheet.table_name, :question_id add_index Fe::ReferenceSheet.table_name, :applicant_answer_sheet_id end end
Version data entries
13 entries across 13 versions & 1 rubygems