<?php
use Phalcon\Mvc\Model\Migration;

class KorwilPadProgressMigration_217 extends Migration
{
    public function up()
    {
        self::$connection->execute("
            CREATE TABLE jaga.korwil_pad_progress (
            id serial PRIMARY KEY,
            id_pad_target INT,
            keterangan TEXT,
            keterangan_verifikasi TEXT,
            status INT, 
            submitted_by int,
            verified_by int,
            created_at timestamp(6) DEFAULT now(),
            updated_at timestamp(6) DEFAULT now(),
            deleted_at timestamp(6)
        )");
    }
    public function down()
    {
        self::$connection->execute("
            DROP TABLE jaga.korwil_pad_progress
        ");
    }
}
