debian-mirror-gitlab/db/post_migrate/20220715160023_drop_post_migration_test_table.rb
2022-08-13 15:12:31 +05:30

14 lines
274 B
Ruby

# 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