Skip to content

Commit c098c1a

Browse files
committed
Fix Migrations - make them nullable
1 parent 1f02700 commit c098c1a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

database/migrations/2015_09_25_111650_create_request_log_entries_table.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ public function up()
1818
$table->string('method', 4);
1919
$table->text('path');
2020
$table->string('ip', 45);
21-
$table->string('session');
22-
$table->text('get');
23-
$table->text('post');
24-
$table->text('cookies');
25-
$table->string('agent');
21+
$table->string('session')->nullable();
22+
$table->text('get')->nullable();
23+
$table->text('post')->nullable();
24+
$table->text('cookies')->nullable();
25+
$table->string('agent')->nullable();
2626
});
2727
}
2828

0 commit comments

Comments
 (0)