Skip to content

Commit 8e8f05c

Browse files
committed
migration updated
1 parent c718d8a commit 8e8f05c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

database/migrations/create_actions_table.php.stub

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ class CreateActionsTable extends Migration
2020
$table->string('action', 20);
2121
$table->json('properties')->nullable();
2222
$table->enum('status', Status::getValues())->default(Status::PENDING);
23-
$table->timestamp('act_at', $precision = 0);
23+
$table->date('act_on')->nullable();
24+
$table->time('act_at');
2425
$table->timestamp('finished_at')->nullable();
2526
$table->timestamps();
2627
});

0 commit comments

Comments
 (0)