summaryrefslogtreecommitdiff
path: root/db/migrate/20140729140420_create_label_links.rb
blob: b8596a44a2188550eaf3cd6b4a770349dac55ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# rubocop:disable all
class CreateLabelLinks < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    create_table :label_links do |t|
      t.integer :label_id
      t.integer :target_id
      t.string :target_type

      t.timestamps null: true
    end
  end
end