mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-20 11:45:57 +08:00
Merge branch 'standalone_develop' into pm_project_develop
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, options: 'ENGINE=InnoDB DEFAULT CHARSET=utf8' 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
|
||||
5
db/migrate/20240809030936_add_position_to_licenses.rb
Normal file
5
db/migrate/20240809030936_add_position_to_licenses.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddPositionToLicenses < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :licenses, :position, :integer, default: 0
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user