You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20150730122735_create_import_items.rb 255B

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