Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew8xx8 <avk@8xx8.ru>2013-03-04 18:51:00 +0400
committerAndrew8xx8 <avk@8xx8.ru>2013-03-04 18:51:00 +0400
commit9a06dd4aa1ab008b6e12205ec3f8d00a50f79aa1 (patch)
tree352dac5bd0e52ce800de2fdf6d09c6c51baa3556 /db/migrate/20130304104623_add_state_to_user.rb
parent152c6018b3ace729095e7b58f5be3963b81050fb (diff)
Migrations added
Diffstat (limited to 'db/migrate/20130304104623_add_state_to_user.rb')
-rw-r--r--db/migrate/20130304104623_add_state_to_user.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130304104623_add_state_to_user.rb b/db/migrate/20130304104623_add_state_to_user.rb
new file mode 100644
index 00000000000..8154c21065f
--- /dev/null
+++ b/db/migrate/20130304104623_add_state_to_user.rb
@@ -0,0 +1,5 @@
+class AddStateToUser < ActiveRecord::Migration
+ def change
+ add_column :users, :state, :string
+ end
+end