| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Game\Telegram;
- use Illuminate\Database\Eloquent\Model;
- class TelegramUser extends Model {
- protected $table = 'webgame.TelegramUser';
- protected $primaryKey = 'tid';
- public $timestamps = false;
- protected $connection='mysql';
- protected $fillable = [
- 'id',
- 'UserID',
- 'GlobalUID',
- 'first_name',
- 'last_name',
- 'username',
- 'language_code',
- 'allows_write_to_pm',
- 'photo_url',
- 'chat_instance',
- 'chat_type',
- 'create_at',
- 'update_at',
- 'enter_times',
- ];
- }
|