summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAndrew8xx8 <avk@8xx8.ru>2013-02-07 15:10:14 +0400
committerAndrew8xx8 <avk@8xx8.ru>2013-02-28 17:15:22 +0400
commit5f657203a1c19b3eca38b3961dfe24e3a06af910 (patch)
tree47e83d63b4e0a613edf0f667b299d7885629140d /db
parent9f45e01e8426b9d678a210bb5237628676f99894 (diff)
downloadgitlab-ce-5f657203a1c19b3eca38b3961dfe24e3a06af910.tar.gz
Description added to temas
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20130207104426_add_description_to_teams.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130207104426_add_description_to_teams.rb b/db/migrate/20130207104426_add_description_to_teams.rb
new file mode 100644
index 00000000000..6d03777901c
--- /dev/null
+++ b/db/migrate/20130207104426_add_description_to_teams.rb
@@ -0,0 +1,5 @@
+class AddDescriptionToTeams < ActiveRecord::Migration
+ def change
+ add_column :user_teams, :description, :string, default: '', null: false
+ end
+end