mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
7 lines
196 B
Ruby
7 lines
196 B
Ruby
class AddWebsiteToProjects < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :projects, :default_branch, :string, default: 'master'
|
|
add_column :projects, :website, :string
|
|
end
|
|
end
|