Merge branch 'pre_trustie_server' into trustie_server

This commit is contained in:
2024-07-19 14:34:28 +08:00
25 changed files with 290 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
class CreateHomeTopSettings < ActiveRecord::Migration[5.2]
def change
create_table :home_top_settings do |t|
t.references :user
t.references :top, polymorphic: true, index: true
t.timestamps
end
end
end

View File

@@ -0,0 +1,6 @@
class AddForkProjectOwnerIdentifierToPullRequests < ActiveRecord::Migration[5.2]
def change
add_column :pull_requests, :fork_project_owner, :string
add_column :pull_requests, :fork_project_identifier, :string
end
end