From 9fb049991f8050c6abc7bc1e23a843f7281c6d50 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 29 Apr 2018 18:07:47 +0200 Subject: [PATCH] Migration for 4.7.4 --- .../2018_04_29_174524_changes_for_v474.php | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 database/migrations/2018_04_29_174524_changes_for_v474.php diff --git a/database/migrations/2018_04_29_174524_changes_for_v474.php b/database/migrations/2018_04_29_174524_changes_for_v474.php new file mode 100644 index 0000000000..9cdac3f720 --- /dev/null +++ b/database/migrations/2018_04_29_174524_changes_for_v474.php @@ -0,0 +1,37 @@ +string('provider', 50)->after('file_type')->default(''); + $table->string('stage', 50)->after('status')->default(''); + $table->longText('transactions')->after('extended_status'); + } + ); + } +}