Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210624180613_add_last_synced_at_to_licenses.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 085fccdc20f74804cec22acccb4e6bf406c6e740 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddLastSyncedAtToLicenses < ActiveRecord::Migration[6.1]
  def change
    add_column :licenses, :last_synced_at, :datetime_with_timezone
  end
end