mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-19 03:54:04 +01:00
4a2813158d
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
7 lines
210 B
Ruby
7 lines
210 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddStandardToPushSubscription < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :web_push_subscriptions, :standard, :boolean, null: false, default: false
|
|
end
|
|
end
|