Files
presensi/app/Database/Migrations/2026-02-20-110654_CreateZonesTable.php
2026-03-05 14:37:36 +07:00

64 lines
1.6 KiB
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class CreateZonesTable extends Migration
{
public function up()
{
$this->forge->addField([
'id' => [
'type' => 'INT',
'constraint' => 11,
'unsigned' => true,
'auto_increment' => true,
],
'zone_code' => [
'type' => 'VARCHAR',
'constraint' => '100',
'unique' => true,
],
'zone_name' => [
'type' => 'VARCHAR',
'constraint' => '255',
],
'latitude' => [
'type' => 'DECIMAL',
'constraint' => '10,8',
],
'longitude' => [
'type' => 'DECIMAL',
'constraint' => '11,8',
],
'radius_meters' => [
'type' => 'INT',
'constraint' => 11,
'unsigned' => 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('zones');
}
public function down()
{
$this->forge->dropTable('zones');
}
}