Welcome to mirror list, hosted at ThFree Co, Russian Federation.

2_drop_some_table.rb « drop_table « migrations « click_house « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82045b08e21ad4efaa1b7b70bbd7ff3d5180d1d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

# rubocop: disable Gitlab/NamespacedClass -- Fixtures do not need to be namespaced
class DropSomeTable < ClickHouse::Migration
  def up
    execute <<~SQL
      DROP TABLE some
    SQL
  end
end
# rubocop: enable Gitlab/NamespacedClass