mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-07-08 07:12:46 +00:00
8 lines
138 B
Ruby
8 lines
138 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseSubscriptions
|
||
|
class Subscription < ActiveRecord::Base
|
||
|
belongs_to :customer
|
||
|
end
|
||
|
end
|