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
path: root/db
diff options
context:
space:
mode:
authorMarco Wessel <marco@poop.nl>2015-01-25 20:34:02 +0300
committerMarco Wessel <marco@poop.nl>2015-01-25 20:34:02 +0300
commitb20fc14133957d0e71bcf48aed4b426d439681db (patch)
tree8a2399adb58fe8111c9a05ebf914f8095af9c935 /db
parentaad6ceaef9ccfba8e058012a0877b80c103a3838 (diff)
Fix indentation
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 124023545f9..32e49ff7a74 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -18,7 +18,6 @@ ActiveRecord::Schema.define(version: 20150125163100) do
create_table "application_settings", force: true do |t|
t.integer "default_projects_limit"
- t.integer "default_branch_protection"
t.boolean "signup_enabled"
t.boolean "signin_enabled"
t.boolean "gravatar_enabled"
@@ -26,6 +25,7 @@ ActiveRecord::Schema.define(version: 20150125163100) do
t.datetime "created_at"
t.datetime "updated_at"
t.string "home_page_url"
+ t.integer "default_branch_protection", default: 2
end
create_table "broadcast_messages", force: true do |t|
@@ -323,12 +323,12 @@ ActiveRecord::Schema.define(version: 20150125163100) do
t.string "import_url"
t.integer "visibility_level", default: 0, null: false
t.boolean "archived", default: false, null: false
+ t.string "avatar"
t.string "import_status"
t.float "repository_size", default: 0.0
t.integer "star_count", default: 0, null: false
t.string "import_type"
t.string "import_source"
- t.string "avatar"
end
add_index "projects", ["creator_id"], name: "index_projects_on_creator_id", using: :btree
@@ -426,6 +426,7 @@ ActiveRecord::Schema.define(version: 20150125163100) do
t.integer "notification_level", default: 1, null: false
t.datetime "password_expires_at"
t.integer "created_by_id"
+ t.datetime "last_credential_check_at"
t.string "avatar"
t.string "confirmation_token"
t.datetime "confirmed_at"
@@ -433,7 +434,6 @@ ActiveRecord::Schema.define(version: 20150125163100) do
t.string "unconfirmed_email"
t.boolean "hide_no_ssh_key", default: false
t.string "website_url", default: "", null: false
- t.datetime "last_credential_check_at"
t.string "github_access_token"
end