summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2018-10-08 16:03:07 +0100
committerNick Thomas <nick@gitlab.com>2018-10-09 11:15:02 +0100
commitff9881d99193bd64d112bb03311aecd75f4270ae (patch)
treea5e336ea308e89f71c0e41cdeccedb47eef59337 /db/schema.rb
parentc616327c1221dc91318a35769e01ab6932d497ea (diff)
downloadgitlab-ce-ff9881d99193bd64d112bb03311aecd75f4270ae.tar.gz
Remove unencrypted webhook token and URL columns
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 4ff0272428a..d47156c6da4 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20181002172433) do
+ActiveRecord::Schema.define(version: 20181008145359) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -2256,7 +2256,6 @@ ActiveRecord::Schema.define(version: 20181002172433) do
add_index "web_hook_logs", ["web_hook_id"], name: "index_web_hook_logs_on_web_hook_id", using: :btree
create_table "web_hooks", force: :cascade do |t|
- t.string "url", limit: 2000
t.integer "project_id"
t.datetime "created_at"
t.datetime "updated_at"
@@ -2269,7 +2268,6 @@ ActiveRecord::Schema.define(version: 20181002172433) do
t.boolean "note_events", default: false, null: false
t.boolean "enable_ssl_verification", default: true
t.boolean "wiki_page_events", default: false, null: false
- t.string "token"
t.boolean "pipeline_events", default: false, null: false
t.boolean "confidential_issues_events", default: false, null: false
t.boolean "repository_update_events", default: false, null: false