2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2014-07-29 10:10:15 -04:00
|
|
|
class CreateLabelLinks < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :label_links do |t|
|
|
|
|
t.integer :label_id
|
|
|
|
t.integer :target_id
|
|
|
|
t.string :target_type
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|