summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220715160023_drop_post_migration_test_table.rb
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