# frozen_string_literal: true class RemoveNamespaceOnboardingActionsTable < ActiveRecord::Migration[6.0] include Gitlab::Database::MigrationHelpers DOWNTIME = false def up with_lock_retries do drop_table :namespace_onboarding_actions end end def down with_lock_retries do create_table :namespace_onboarding_actions do |t| t.references :namespace, index: true, null: false t.datetime_with_timezone :created_at, null: false t.integer :action, limit: 2, null: false end end end end