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
|
19
db/schema.rb
19
db/schema.rb
|
@ -112,6 +112,7 @@ ActiveRecord::Schema.define(:version => 20130220133245) do
|
|||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.string "type"
|
||||
t.string "description", :default => "", :null => false
|
||||
end
|
||||
|
||||
add_index "namespaces", ["name"], :name => "index_namespaces_on_name"
|
||||
|
@ -142,14 +143,14 @@ ActiveRecord::Schema.define(:version => 20130220133245) do
|
|||
t.string "name"
|
||||
t.string "path"
|
||||
t.text "description"
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.integer "creator_id"
|
||||
t.string "default_branch"
|
||||
t.boolean "issues_enabled", :default => true, :null => false
|
||||
t.boolean "wall_enabled", :default => true, :null => false
|
||||
t.boolean "merge_requests_enabled", :default => true, :null => false
|
||||
t.boolean "wiki_enabled", :default => true, :null => false
|
||||
t.boolean "issues_enabled", :default => true, :null => false
|
||||
t.boolean "wall_enabled", :default => true, :null => false
|
||||
t.boolean "merge_requests_enabled", :default => true, :null => false
|
||||
t.boolean "wiki_enabled", :default => true, :null => false
|
||||
t.integer "namespace_id"
|
||||
t.boolean "public", :default => false, :null => false
|
||||
t.string "issues_tracker", :default => "gitlab", :null => false
|
||||
|
@ -232,8 +233,14 @@ ActiveRecord::Schema.define(:version => 20130220133245) do
|
|||
t.string "name"
|
||||
t.string "path"
|
||||
t.integer "owner_id"
|
||||
<<<<<<< HEAD
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
=======
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.string "description", :default => "", :null => false
|
||||
>>>>>>> 2f1f05d431d1df062e46365930b98b358554a07d
|
||||
end
|
||||
|
||||
create_table "users", :force => true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue