mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 17:40:33 +08:00
7 lines
188 B
Ruby
7 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
|