1
0

User.php 345 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace api\models;
  3. use Yii;
  4. class User extends \yii\db\ActiveRecord
  5. {
  6. /**
  7. * @inheritdoc
  8. */
  9. public static function tableName()
  10. {
  11. return 'user';
  12. }
  13. /**
  14. * @inheritdoc
  15. */
  16. public function rules()
  17. {
  18. return [
  19. [['name'], 'string', 'max' => 100],
  20. ];
  21. }
  22. }