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
16 lines
455 B
Ruby
16 lines
455 B
Ruby
# frozen_string_literal: false
|
|
|
|
class CreateChangesetsIssues < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
create_table :changesets_issues, :id => false do |t|
|
|
t.column :changeset_id, :integer, :null => false
|
|
t.column :issue_id, :integer, :null => false
|
|
end
|
|
add_index :changesets_issues, [:changeset_id, :issue_id], :unique => true, :name => :changesets_issues_ids
|
|
end
|
|
|
|
def self.down
|
|
drop_table :changesets_issues
|
|
end
|
|
end
|