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