1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-23 23:29:39 +02:00
Maybe/db/migrate/20240911143158_add_last_synced_at_institution.rb

6 lines
144 B
Ruby
Raw Normal View History

class AddLastSyncedAtInstitution < ActiveRecord::Migration[7.2]
def change
add_column :institutions, :last_synced_at, :datetime
end
end