This commit is contained in:
JOSEPH LE 2024-08-06 16:22:23 +07:00
parent f1e7af7bf4
commit 445ebd3ca7
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ return new class extends Migration
Schema::create('tickets', function (Blueprint $table) {
$table->id();
$table->integer('user_id');
$table->timestamps('start_date');
$table->date('start_date');
$table->string('start_period');
$table->timestamps('end_date');
$table->date('end_date');
$table->string('end_period');
$table->string('type');
$table->string('reason');