1234567891011121314151617181920212223242526 |
- <?php
- namespace api\models;
- use Yii;
- class User extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'user';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['name'], 'string', 'max' => 100],
- ];
- }
- }
|