diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-13 21:06:27 +0300 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-13 21:06:27 +0300 |
| commit | 6838304a85cd3b5dfdac076c600cb15f5643c674 (patch) | |
| tree | 61785561cb8fde46b41630b0a6ad60ca8eb24b02 /db/schema.rb | |
| parent | 00882b3c33cb377b903cdf8e2b91149081739785 (diff) | |
| download | gitlab-ce-6838304a85cd3b5dfdac076c600cb15f5643c674.tar.gz | |
Force user password change for users created by admin
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index ce8c6d2ab7a..bec32c1d52a 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 => 20130613165816) do +ActiveRecord::Schema.define(:version => 20130613173246) do create_table "deploy_keys_projects", :force => true do |t| t.integer "deploy_key_id", :null => false @@ -293,6 +293,7 @@ ActiveRecord::Schema.define(:version => 20130613165816) do t.integer "color_scheme_id", :default => 1, :null => false t.integer "notification_level", :default => 1, :null => false t.datetime "password_expires_at" + t.integer "created_by_id" end add_index "users", ["admin"], :name => "index_users_on_admin" |
