mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
This will be changed to true in the future. git-svn-id: http://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
17 lines
562 B
Ruby
17 lines
562 B
Ruby
# frozen_string_literal: false
|
|
|
|
class CreateChangesetParents < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
create_table :changeset_parents, :id => false do |t|
|
|
t.column :changeset_id, :integer, :null => false
|
|
t.column :parent_id, :integer, :null => false
|
|
end
|
|
add_index :changeset_parents, [:changeset_id], :unique => false, :name => :changeset_parents_changeset_ids
|
|
add_index :changeset_parents, [:parent_id], :unique => false, :name => :changeset_parents_parent_ids
|
|
end
|
|
|
|
def self.down
|
|
drop_table :changeset_parents
|
|
end
|
|
end
|