debian-mirror-gitlab/db/migrate/20140729140420_create_label_links.rb
2018-12-23 12:14:25 +05:30

15 lines
276 B
Ruby

# 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