User.php 456 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\model;
  3. use support\Model;
  4. class User extends Model
  5. {
  6. /**
  7. * The table associated with the model.
  8. *
  9. * @var string
  10. */
  11. protected $table = null;
  12. /**
  13. * The primary key associated with the table.
  14. *
  15. * @var string
  16. */
  17. protected $primaryKey = 'id';
  18. /**
  19. * Indicates if the model should be timestamped.
  20. *
  21. * @var bool
  22. */
  23. public $timestamps = false;
  24. }