mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-17 00:45:08 +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
|