You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # == Schema Information
- #
- # Table name: action_templates
- #
- # id :integer not null, primary key
- # name :string(255)
- # description :string(255)
- # img :string(255)
- # sort_no :string(255) default("0")
- # json :text(65535)
- # yaml :text(65535)
- # created_at :datetime not null
- # updated_at :datetime not null
- #
-
- class Action::Template < ApplicationRecord
- self.table_name = 'action_templates'
- default_scope { order(sort_no: :asc) }
-
- end
|