mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
33 lines
669 B
PHP
33 lines
669 B
PHP
|
<?php
|
||
|
namespace common\models;
|
||
|
|
||
|
use yii\behaviors\TimestampBehavior;
|
||
|
use yii\db\ActiveRecord;
|
||
|
|
||
|
/**
|
||
|
* Поля модели:
|
||
|
* @property string $username
|
||
|
* @property string $uuid
|
||
|
* @property integer $last_pulled_at
|
||
|
*
|
||
|
* Поведения:
|
||
|
* @mixin TimestampBehavior
|
||
|
*/
|
||
|
class MojangUsername extends ActiveRecord {
|
||
|
|
||
|
public static function tableName() {
|
||
|
return '{{%mojang_usernames}}';
|
||
|
}
|
||
|
|
||
|
public function behaviors() {
|
||
|
return [
|
||
|
[
|
||
|
'class' => TimestampBehavior::class,
|
||
|
'createdAtAttribute' => false,
|
||
|
'updatedAtAttribute' => 'last_pulled_at',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|