summaryrefslogtreecommitdiff
path: root/db/migrate/20220413235818_add_max_seats_used_changed_at_to_gitlab_subscriptions.rb
blob: 34e3a59cfb76a0331a5315b0a8c25c09c63f4948 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddMaxSeatsUsedChangedAtToGitlabSubscriptions < Gitlab::Database::Migration[2.0]
  def change
    add_column :gitlab_subscriptions, :max_seats_used_changed_at, :datetime_with_timezone
  end
end