Loading CHANGELOG +1 −0 Original line number Diff line number Diff line Loading @@ -90,6 +90,7 @@ v 8.11.5 (unreleased) - Fix member expiration date picker after update - Fix suggested colors options for new labels in the admin area. !6138 - Fix GitLab import button - Remove gitorious from import_sources v 8.11.4 - Fix resolving conflicts on forks. !6082 Loading db/migrate/20160902122721_drop_gitorious_field_from_application_settings.rb 0 → 100644 +31 −0 Original line number Diff line number Diff line class DropGitoriousFieldFromApplicationSettings < ActiveRecord::Migration include Gitlab::Database::MigrationHelpers # After the deploy the caches will be cold anyway DOWNTIME = false def up require 'yaml' yaml = connection.execute('SELECT import_sources FROM application_settings;').values[0][0] yaml = YAML.safe_load(yaml) yaml.delete 'gitorious' # No need for a WHERE clause as there is only one connection.execute("UPDATE application_settings SET import_sources = #{update_yaml(yaml)}") end def down # noop, gitorious still yields a 404 anyway end private def connection ActiveRecord::Base.connection end def update_yaml(yaml) connection.quote(YAML.dump(yaml)) end end db/schema.rb +1 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 20160901141443) do ActiveRecord::Schema.define(version: 20160902122721) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" Loading Loading
CHANGELOG +1 −0 Original line number Diff line number Diff line Loading @@ -90,6 +90,7 @@ v 8.11.5 (unreleased) - Fix member expiration date picker after update - Fix suggested colors options for new labels in the admin area. !6138 - Fix GitLab import button - Remove gitorious from import_sources v 8.11.4 - Fix resolving conflicts on forks. !6082 Loading
db/migrate/20160902122721_drop_gitorious_field_from_application_settings.rb 0 → 100644 +31 −0 Original line number Diff line number Diff line class DropGitoriousFieldFromApplicationSettings < ActiveRecord::Migration include Gitlab::Database::MigrationHelpers # After the deploy the caches will be cold anyway DOWNTIME = false def up require 'yaml' yaml = connection.execute('SELECT import_sources FROM application_settings;').values[0][0] yaml = YAML.safe_load(yaml) yaml.delete 'gitorious' # No need for a WHERE clause as there is only one connection.execute("UPDATE application_settings SET import_sources = #{update_yaml(yaml)}") end def down # noop, gitorious still yields a 404 anyway end private def connection ActiveRecord::Base.connection end def update_yaml(yaml) connection.quote(YAML.dump(yaml)) end end
db/schema.rb +1 −1 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 20160901141443) do ActiveRecord::Schema.define(version: 20160902122721) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" Loading