Class: CreateGalterIrExporterMigrationSurveyItems

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/galter_ir_exporter/install/templates/create_galter_ir_exporter_migration_survey_items.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/galter_ir_exporter/install/templates/create_galter_ir_exporter_migration_survey_items.rb', line 2

def change
  create_table :galter_ir_exporter_migration_survey_items do |t|
    t.string :object_id
    t.string :object_class
    t.text :object_title
    t.integer :migration_status

    t.timestamps null: false
  end
end