aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20161228102458_create_import_messages.rb
blob: 53a26cbd22f2804fbf5263f8a91c211091a87795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateImportMessages < ActiveRecord::Migration
  def change
    create_table :import_messages do |t|
      t.integer :criticity
      t.string :message_key
      t.hstore :message_attributs
      t.references :import, index: true
      t.references :resource, index: true

      t.timestamps
    end
  end
end