a59e75a17f
Signed-off-by: Rémy Coutable <remy@rymai.me>
14 lines
271 B
Ruby
14 lines
271 B
Ruby
# rubocop:disable all
|
|
class CreateLabelLinks < ActiveRecord::Migration
|
|
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
|