Added migration

上级 284d4f76
# rubocop:disable all
class AddClientsideSentryToApplicationSettings < ActiveRecord::Migration
def change
change_table :application_settings do |t|
t.boolean :clientside_sentry_enabled, default: false
t.string :clientside_sentry_dsn
end
end
end
......@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170426175636) do
ActiveRecord::Schema.define(version: 20170428123910) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
......@@ -121,6 +121,8 @@ ActiveRecord::Schema.define(version: 20170426175636) do
t.boolean "usage_ping_enabled", default: true, null: false
t.string "uuid"
t.integer "cached_markdown_version"
t.boolean "clientside_sentry_enabled", default: false
t.string "clientside_sentry_dsn"
end
create_table "audit_events", force: :cascade do |t|
......@@ -296,6 +298,7 @@ ActiveRecord::Schema.define(version: 20170426175636) do
t.boolean "locked", default: false, null: false
end
add_index "ci_runners", ["contacted_at"], name: "index_ci_runners_on_contacted_at", using: :btree
add_index "ci_runners", ["is_shared"], name: "index_ci_runners_on_is_shared", using: :btree
add_index "ci_runners", ["locked"], name: "index_ci_runners_on_locked", using: :btree
add_index "ci_runners", ["token"], name: "index_ci_runners_on_token", using: :btree
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册