debian-mirror-gitlab/db/migrate/20221018124029_add_consume_after_to_ghost_user_migrations.rb
2023-01-12 18:35:48 +00:00

8 lines
249 B
Ruby

# 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