From e661ce344127ca8acd1300746c5132098578fab7 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 20 Sep 2017 17:12:43 +0200 Subject: Use POST for long queries; change request to TEXT type for the same reason --- .../2017_09_20_150615_make_request_text.php | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2017_09_20_150615_make_request_text.php (limited to 'database/migrations/2017_09_20_150615_make_request_text.php') diff --git a/database/migrations/2017_09_20_150615_make_request_text.php b/database/migrations/2017_09_20_150615_make_request_text.php new file mode 100644 index 0000000..4ccf82b --- /dev/null +++ b/database/migrations/2017_09_20_150615_make_request_text.php @@ -0,0 +1,32 @@ +text('request')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('random_logs', function (Blueprint $table) { + // + }); + } +} -- cgit v1.2.3