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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/click_house/migrations/table_creation_with_down_method/1_create_some_table.rb')
-rw-r--r--spec/fixtures/click_house/migrations/table_creation_with_down_method/1_create_some_table.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/fixtures/click_house/migrations/table_creation_with_down_method/1_create_some_table.rb b/spec/fixtures/click_house/migrations/table_creation_with_down_method/1_create_some_table.rb
new file mode 100644
index 00000000000..7ac92b9ee38
--- /dev/null
+++ b/spec/fixtures/click_house/migrations/table_creation_with_down_method/1_create_some_table.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+# rubocop: disable Gitlab/NamespacedClass -- Fixtures do not need to be namespaced
+class CreateSomeTable < ClickHouse::Migration
+ def up
+ execute <<~SQL
+ CREATE TABLE some (
+ id UInt64,
+ date Date
+ ) ENGINE = Memory
+ SQL
+ end
+
+ def down
+ execute <<~SQL
+ DROP TABLE some
+ SQL
+ end
+end
+# rubocop: enable Gitlab/NamespacedClass