debian-mirror-gitlab/db/migrate/20180529093006_ensure_remote_mirror_columns.rb

29 lines
1 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class EnsureRemoteMirrorColumns < ActiveRecord::Migration[4.2]
2018-10-15 14:42:47 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/Datetime
# rubocop:disable Migration/PreventStrings
2018-10-15 14:42:47 +05:30
def up
add_column :remote_mirrors, :last_update_started_at, :datetime unless column_exists?(:remote_mirrors, :last_update_started_at)
2020-05-24 23:13:21 +05:30
add_column :remote_mirrors, :remote_name, :string unless column_exists?(:remote_mirrors, :remote_name)
2018-10-15 14:42:47 +05:30
unless column_exists?(:remote_mirrors, :only_protected_branches)
2020-05-24 23:13:21 +05:30
add_column_with_default(:remote_mirrors, # rubocop:disable Migration/AddColumnWithDefault
2018-10-15 14:42:47 +05:30
:only_protected_branches,
:boolean,
default: false,
allow_null: false)
end
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
# rubocop:enable Migration/Datetime
2018-10-15 14:42:47 +05:30
def down
# db/migrate/20180503131624_create_remote_mirrors.rb will remove the table
end
end