class CreateGalterIrExporterMigrationSurveyItems

Public Instance Methods

change() click to toggle source
# 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