mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-08-16 09:13:27 +00:00
8 lines
188 B
Ruby
8 lines
188 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddStatusToSubscriptions < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :discourse_subscriptions_subscriptions, :status, :string
|
||
|
end
|
||
|
end
|