mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
11 lines
219 B
Ruby
11 lines
219 B
Ruby
class CreatePullAttachedIssues < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :pull_attached_issues do |t|
|
|
t.references :pull_request
|
|
t.references :issue
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|