summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-13 20:01:35 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-13 20:01:35 +0300
commit94be73202617a5b0886c348ffbaf08947ecf8b45 (patch)
treea07f08336ffa9fc9215b47174f090516a215b346 /db/schema.rb
parent5b40780290e7d7c9e129e58c4f3f435073598ae6 (diff)
downloadgitlab-ce-94be73202617a5b0886c348ffbaf08947ecf8b45.tar.gz
Add password_expires_at to users table
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 21e553dd612..ce8c6d2ab7a 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20130522141856) do
+ActiveRecord::Schema.define(:version => 20130613165816) do
create_table "deploy_keys_projects", :force => true do |t|
t.integer "deploy_key_id", :null => false
@@ -292,6 +292,7 @@ ActiveRecord::Schema.define(:version => 20130522141856) do
t.string "state"
t.integer "color_scheme_id", :default => 1, :null => false
t.integer "notification_level", :default => 1, :null => false
+ t.datetime "password_expires_at"
end
add_index "users", ["admin"], :name => "index_users_on_admin"