f06d98e907
default_branch now defaults to nil, not 'master'. It will be set after the first push by discover_default_branch.
13 lines
401 B
Ruby
13 lines
401 B
Ruby
class SetDefaultBranchDefaultToNil < ActiveRecord::Migration
|
|
def up
|
|
# Set the default_branch to allow nil, and default it to nil
|
|
change_column_null(:projects, :default_branch, true)
|
|
change_column_default(:projects, :default_branch, nil)
|
|
end
|
|
|
|
def down
|
|
change_column_null(:projects, :default_branch, false)
|
|
change_column_default(:projects, :default_branch, 'master')
|
|
end
|
|
end
|