forgeplus/app/models/template_message_setting.rb

22 lines
548 B
Ruby
Raw Normal View History

2021-10-13 17:04:28 +08:00
# == Schema Information
#
# Table name: template_message_settings
#
# id :integer not null, primary key
# type :string(255)
# name :string(255)
# key :string(255)
# openning :boolean
# notification_disabled :boolean
# email_disabled :boolean
# created_at :datetime not null
# updated_at :datetime not null
#
class TemplateMessageSetting < ApplicationRecord
def self.build_init_data
end
end