change pull-request

This commit is contained in:
sylor_huang@126.com
2020-06-29 17:06:46 +08:00
parent 4dcdea33aa
commit 4212d46b3f
10 changed files with 97 additions and 15 deletions

View File

@@ -0,0 +1,6 @@
class AddOriginProjectIdToPullRequest < ActiveRecord::Migration[5.2]
def change
add_column :pull_requests, :fork_project_id, :integer
add_column :pull_requests, :is_original, :boolean, default: false
end
end