diff options
author | Andrew8xx8 <avk@8xx8.ru> | 2013-02-07 14:42:52 +0400 |
---|---|---|
committer | Andrew8xx8 <avk@8xx8.ru> | 2013-02-28 17:14:21 +0400 |
commit | 9f45e01e8426b9d678a210bb5237628676f99894 (patch) | |
tree | 1f8807a94a32eeceb5c90f39ca82018a519aa7b7 /db/migrate | |
parent | 135418dcbf72d264a846649b95ea8e6d8a2aadcf (diff) | |
download | gitlab-ce-9f45e01e8426b9d678a210bb5237628676f99894.tar.gz |
Description to groups added
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20130206084024_add_description_to_namsespace.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130206084024_add_description_to_namsespace.rb b/db/migrate/20130206084024_add_description_to_namsespace.rb new file mode 100644 index 00000000000..ef02e489d03 --- /dev/null +++ b/db/migrate/20130206084024_add_description_to_namsespace.rb @@ -0,0 +1,5 @@ +class AddDescriptionToNamsespace < ActiveRecord::Migration + def change + add_column :namespaces, :description, :string, default: '', null: false + end +end |