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:
-rw-r--r--db/migrate/20170206115204_add_column_ghost_to_users.rb6
-rw-r--r--db/schema.rb4
2 files changed, 3 insertions, 7 deletions
diff --git a/db/migrate/20170206115204_add_column_ghost_to_users.rb b/db/migrate/20170206115204_add_column_ghost_to_users.rb
index 57b66ca91a8..cc1eeda1160 100644
--- a/db/migrate/20170206115204_add_column_ghost_to_users.rb
+++ b/db/migrate/20170206115204_add_column_ghost_to_users.rb
@@ -1,12 +1,8 @@
class AddColumnGhostToUsers < ActiveRecord::Migration
- include Gitlab::Database::MigrationHelpers
-
DOWNTIME = false
- disable_ddl_transaction!
-
def up
- add_column_with_default :users, :ghost, :boolean, default: false, allow_null: false
+ add_column :users, :ghost, :boolean
end
def down
diff --git a/db/schema.rb b/db/schema.rb
index c50d6fc4ad6..1d94368f66e 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1278,11 +1278,11 @@ ActiveRecord::Schema.define(version: 20170216141440) do
t.datetime "otp_grace_period_started_at"
t.boolean "ldap_email", default: false, null: false
t.boolean "external", default: false
- t.string "organization"
t.string "incoming_email_token"
+ t.string "organization"
t.boolean "authorized_projects_populated"
t.boolean "notified_of_own_activity", default: false, null: false
- t.boolean "ghost", default: false, null: false
+ t.boolean "ghost"
end
add_index "users", ["admin"], name: "index_users_on_admin", using: :btree