mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 05:35:46 +08:00
8 lines
182 B
Ruby
8 lines
182 B
Ruby
class AddIssueEnterprise < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :issues, :enterprise_identifier, :string
|
|
add_index :issues, :enterprise_identifier
|
|
end
|
|
|
|
end
|