TelegramBotGroup.php 334 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models\Telegram;
  3. use Illuminate\Database\Eloquent\Model;
  4. class TelegramBotGroup extends Model
  5. {
  6. protected $connection = 'mysql';
  7. protected $table = 'telegram_bot_group';
  8. protected $primaryKey = 'rid';
  9. protected $keyType = 'int';
  10. public $timestamps = false;
  11. protected $guarded = [];
  12. }