1 2 3 4 5 6 7 8 9 10 11 12
# frozen_string_literal: false class CreateImportItems < ActiveRecord::Migration[4.2] def change create_table :import_items do |t| t.integer :import_id, :null => false t.integer :position, :null => false t.integer :obj_id t.text :message end end end