Skip to content

Commit

Permalink
Migrations: Misc fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Dicky Herlambang (花) <herlambangdicky5@gmail.com>
  • Loading branch information
Nicklas373 committed May 12, 2024
1 parent 4664b85 commit 85067b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/migrations/2024_01_01_000000_init_pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public function up(): void
Schema::create('appLogs', function (Blueprint $table) {
$table->uuid('processId');
$table->text('errReason')->nullable();
$table->text('errApiReason')->nullable();
$table->timestamp('createdAt')->useCurrent()->useCurrentOnUpdate();
$table->text('errStatus')->nullable();
$table->timestamp('createdAt')->nullable()->useCurrent()->useCurrentOnUpdate();

// Configure primary key
$table->primary('processId');
Expand Down

0 comments on commit 85067b4

Please sign in to comment.