25 lines
716 B
PHP
25 lines
716 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class Access extends \Core\Model
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->createTable(
|
|
'user',
|
|
[
|
|
'id int(3) NOT NULL AUTO_INCREMENT',
|
|
'username varchar(25) NOT NULL',
|
|
'password char(13) NOT NULL',
|
|
'salt char(23) NOT NULL',
|
|
'full_name varchar(50) NOT NULL',
|
|
'registered_at date NOT NULL DEFAULT CURRENT_TIMESTAMP',
|
|
'privilage tinyint(1) NOT NULL DEFAULT 0',
|
|
'status tinyint(1) NOT NULL DEFAULT 0',
|
|
'max_user int(1) NOT NULL DEFAULT 5',
|
|
'PRIMARY KEY (id)'
|
|
]
|
|
);
|
|
}
|
|
}
|