summaryrefslogtreecommitdiff
path: root/db/migrate/20221018124029_add_consume_after_to_ghost_user_migrations.rb
blob: 148c6516dc9ba5fe45b5877b5181abf7dfe66d8d (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddConsumeAfterToGhostUserMigrations < Gitlab::Database::Migration[2.0]
  def change
    add_column :ghost_user_migrations, :consume_after, :datetime_with_timezone, null: false, default: -> { 'NOW()' }
  end
end