30 lines
975 B
PHP
30 lines
975 B
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class CreateUsersTable extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
$this->forge->addField([
|
|
'id' => ['type' => 'INT', 'unsigned' => true, 'auto_increment' => true],
|
|
'username' => ['type' => 'VARCHAR', 'constraint' => '100', 'unique' => true],
|
|
'email' => ['type' => 'VARCHAR', 'constraint' => '100', 'unique' => true],
|
|
'password' => ['type' => 'VARCHAR', 'constraint' => '255'],
|
|
'role' => ['type' => 'ENUM', 'constraint' => ['super_admin', 'admin'], 'default' => 'admin'],
|
|
'created_at' => ['type' => 'DATETIME', 'null' => true],
|
|
'updated_at' => ['type' => 'DATETIME', 'null' => true],
|
|
]);
|
|
|
|
$this->forge->addKey('id', true);
|
|
$this->forge->createTable('users');
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->forge->dropTable('users');
|
|
}
|
|
}
|