03654a6abf
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
11 lines
218 B
Ruby
11 lines
218 B
Ruby
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
|