8 lines
155 B
Ruby
8 lines
155 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscoursePatrons
|
||
|
class Customer < ActiveRecord::Base
|
||
|
self.table_name = "discourse_patrons_customers"
|
||
|
end
|
||
|
end
|