66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class CreateDisciplineLevelsTable extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
$this->forge->addField([
|
|
'id' => [
|
|
'type' => 'INT',
|
|
'constraint' => 11,
|
|
'unsigned' => true,
|
|
'auto_increment' => true,
|
|
],
|
|
'min_score' => [
|
|
'type' => 'INT',
|
|
'constraint' => 11,
|
|
'default' => 0,
|
|
],
|
|
'max_score' => [
|
|
'type' => 'INT',
|
|
'constraint' => 11,
|
|
'null' => true, // null = tak terbatas (>= min_score)
|
|
],
|
|
'title' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 100,
|
|
],
|
|
'school_action' => [
|
|
'type' => 'TEXT',
|
|
'null' => true,
|
|
],
|
|
'executor' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 150,
|
|
'null' => true,
|
|
],
|
|
'is_active' => [
|
|
'type' => 'TINYINT',
|
|
'constraint' => 1,
|
|
'default' => 1,
|
|
],
|
|
'created_at' => [
|
|
'type' => 'DATETIME',
|
|
'null' => true,
|
|
],
|
|
'updated_at' => [
|
|
'type' => 'DATETIME',
|
|
'null' => true,
|
|
],
|
|
]);
|
|
|
|
$this->forge->addKey('id', true);
|
|
$this->forge->createTable('discipline_levels');
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->forge->dropTable('discipline_levels');
|
|
}
|
|
}
|
|
|