Skip to content

Commit

Permalink
Update create_logs_table.php.stub
Browse files Browse the repository at this point in the history
  • Loading branch information
Dipesh79 authored Jan 4, 2024
1 parent a6ebbb0 commit 8f55451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databases/migrations/create_logs_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CreateUserActivityLogsTable extends Migration
$table->enum('action', ['Create', 'Update', 'Delete']);
$table->morphs('loggable');
$table->string('ip_address');
$table->string('device');
$table->longText('device');
$table->foreignId('user_id')->constrained('users');
$table->timestamps();
});
Expand Down

0 comments on commit 8f55451

Please sign in to comment.