mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 16:56:50 +08:00
20 lines
453 B
Ruby
Vendored
20 lines
453 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseSubscriptions
|
|
class Product < ActiveRecord::Base
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: discourse_subscriptions_products
|
|
#
|
|
# id :bigint not null, primary key
|
|
# external_id :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_discourse_subscriptions_products_on_external_id (external_id)
|
|
#
|