# frozen_string_literal: true class RemoveAndAddCiPipelineScheduleVariablesRawWithNewDefault < Gitlab::Database::Migration[2.0] enable_lock_retries! def change remove_column :ci_pipeline_schedule_variables, :raw, :boolean, null: false, default: true add_column :ci_pipeline_schedule_variables, :raw, :boolean, null: false, default: false end end