mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-09-08 20:52:11 +00:00
33 lines
832 B
Ruby
33 lines
832 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseSubscriptions
|
|
class Customer < ActiveRecord::Base
|
|
self.table_name = "discourse_subscriptions_customers"
|
|
|
|
scope :find_user, ->(user) { find_by_user_id(user.id) }
|
|
|
|
has_many :subscriptions
|
|
|
|
def self.create_customer(user, customer)
|
|
create(customer_id: customer[:id], user_id: user.id)
|
|
end
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: discourse_subscriptions_customers
|
|
#
|
|
# id :bigint not null, primary key
|
|
# customer_id :string not null
|
|
# product_id :string
|
|
# user_id :bigint
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_discourse_subscriptions_customers_on_customer_id (customer_id)
|
|
# index_discourse_subscriptions_customers_on_user_id (user_id)
|
|
#
|