Merge branch 'team-and-group-descriptions' of https://github.com/Undev/gitlabhq into Undev-team-and-group-descriptions
Conflicts: db/schema.rb
This commit is contained in:
commit
5c3cb47c16
26 changed files with 155 additions and 45 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddDescriptionToNamsespace < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :namespaces, :description, :string, default: '', null: false
|
||||
end
|
||||
end
|
5
db/migrate/20130207104426_add_description_to_teams.rb
Normal file
5
db/migrate/20130207104426_add_description_to_teams.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddDescriptionToTeams < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :user_teams, :description, :string, default: '', null: false
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue