20150730122735_create_import_items.rb
10 lines
| 250 B
| text/x-ruby
|
RubyLexer
|
r14111 | class CreateImportItems < ActiveRecord::Migration | ||
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 | ||||