summaryrefslogtreecommitdiff
path: root/db/migrate/20210624180613_add_last_synced_at_to_licenses.rb
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