mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-22 12:45:46 +08:00
Merge branch 'pre_trustie_server' into trustie_server
This commit is contained in:
10
db/migrate/20240715072430_create_home_top_settings.rb
Normal file
10
db/migrate/20240715072430_create_home_top_settings.rb
Normal 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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user