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: install_bot
- #
- # id :integer not null, primary key
- # bot_id :integer not null
- # installer_id :integer not null
- # store_id :integer not null
- # state :integer not null
- # create_time :datetime not null
- # update_time :datetime not null
- #
-
- # frozen_string_literal: true
-
- class BotInstall < ApplicationRecord
- self.table_name = "install_bot"
- belongs_to :bot
-
- end
|