discourse-subscriptions/app/models/customer.rb

8 lines
155 B
Ruby
Raw Normal View History

2019-10-25 20:31:19 -04:00
# frozen_string_literal: true
module DiscoursePatrons
class Customer < ActiveRecord::Base
self.table_name = "discourse_patrons_customers"
end
end