diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-04-09 22:22:19 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-04-09 22:22:19 +0100 |
commit | 8fc18a9ee68e9f501936360ca18fc1a795cbfc44 (patch) | |
tree | a3f1c7e2514b28efb2731047fc107ff7b0649cd5 | |
parent | faa342b4c80ad56be1ea44c88a333c25a7477596 (diff) |
Removed referer from columns in migration
-rw-r--r-- | database/migrations/0000_00_00_000000_create_access_log_table.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/database/migrations/0000_00_00_000000_create_access_log_table.php b/database/migrations/0000_00_00_000000_create_access_log_table.php index 870f737..35836bd 100644 --- a/database/migrations/0000_00_00_000000_create_access_log_table.php +++ b/database/migrations/0000_00_00_000000_create_access_log_table.php @@ -27,7 +27,6 @@ return new class extends Migration 'TRACE', ]); $table->string('path'); - $table->string('referer')->nullable(); $table->unsignedSmallInteger('status'); $table->jsonb('properties')->nullable(); $table->timestamp('created_at'); |