1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 14:19:39 +02:00
Maybe/db/migrate/20241024142537_add_subscription_timestamp_to_session.rb
Zach Gollwitzer 6baffe7539
Beta Testing Round 3 Bug Fixes (#1357)
* Clean up env example files

* Fix duplicate category creations

* Fix duplicate tag and merchant creation

* Add initial valuation to imported accounts

* Add upgrade modal prompt

* Don't hide content on billing page

* Add temporary session for new customers

* Lint fixes

* Fix unused translations

* Fix system tests
2024-10-24 11:02:27 -04:00

5 lines
146 B
Ruby

class AddSubscriptionTimestampToSession < ActiveRecord::Migration[7.2]
def change
add_column :sessions, :subscribed_at, :datetime
end
end