mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-13 08:15:55 +08:00
Merge develop
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class CreateAppliedTransferProjects < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :applied_transfer_projects do |t|
|
||||
t.references :project
|
||||
t.references :owner
|
||||
t.references :user
|
||||
t.integer :status, default: 0
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddAcceleratorUrlToRepositories < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :repositories, :accelerator_url, :string, default: ""
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddSourceCloneUrlToRepositories < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :repositories, :source_clone_url, :string, default: ""
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user