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

20220715160023_drop_post_migration_test_table.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98b4cbcf97210ccd5db2793a7395439bcfa73b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class DropPostMigrationTestTable < Gitlab::Database::Migration[2.0]
  def up
    drop_table :post_migration_test_table
  end

  def down
    create_table :post_migration_test_table do |t|
      t.integer :status, null: false
    end
  end
end