2020-05-22 11:20:05 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
module DiscourseSubscriptions
|
|
|
|
|
class Product < ActiveRecord::Base
|
|
|
|
|
end
|
|
|
|
|
end
|
2024-10-25 05:48:56 -03:00
|
|
|
|
|
|
|
|
# == 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)
|
|
|
|
|
#
|