Merge branch 'dev_trustie' into dev_chain

This commit is contained in:
sylor_huang@126.com
2020-06-29 17:07:38 +08:00
21 changed files with 213 additions and 53 deletions

View File

@@ -0,0 +1,5 @@
class AddSyncNumToMirrors < ActiveRecord::Migration[5.2]
def change
add_column :mirrors, :sync_num, :integer, default: 1
end
end

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