mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
10 lines
396 B
Ruby
10 lines
396 B
Ruby
|
class AddLastSeenUpgradeToUser < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
# Self-hosted users will be prompted to upgrade to the latest commit or release.
|
||
|
add_column :users, :last_prompted_upgrade_commit_sha, :string
|
||
|
|
||
|
# All users will be notified when a new commit or release has successfully been deployed.
|
||
|
add_column :users, :last_alerted_upgrade_commit_sha, :string
|
||
|
end
|
||
|
end
|