Update 2024_08_02_025714_create_categories_table.php

This commit is contained in:
Truong Vo 2024-08-06 16:48:18 +07:00
parent b89bb2da88
commit 5b66eaeb28
1 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ return new class extends Migration
'c_code' => 'S',
'c_name' => 'Buổi Sáng',
'c_type' => 'TIME_TYPE',
'c_value' => null,
'c_value' => "0.5",
'c_active' => 1,
'created_at' => now(),
'updated_at' => now(),
@ -36,7 +36,7 @@ return new class extends Migration
'c_code' => 'C',
'c_name' => 'Buổi Chiều',
'c_type' => 'TIME_TYPE',
'c_value' => null,
'c_value' => "0.5",
'c_active' => 1,
'created_at' => now(),
'updated_at' => now(),
@ -45,7 +45,7 @@ return new class extends Migration
'c_code' => 'ALL',
'c_name' => 'Cả Ngày',
'c_type' => 'TIME_TYPE',
'c_value' => null,
'c_value' => "1",
'c_active' => 1,
'created_at' => now(),
'updated_at' => now(),