From 55fa60d28bc26b883bad6b177b1622b84e77be60 Mon Sep 17 00:00:00 2001 From: Russ Long Date: Sun, 23 Dec 2018 10:10:58 -0500 Subject: [PATCH] add timestamp columns to tables --- .../migrations/2018_12_23_100532_add_timestamps_bidders.php | 2 +- .../migrations/2018_12_23_100646_add_timestamps_checkout.php | 2 +- database/migrations/2018_12_23_100651_add_timestamps_items.php | 2 +- .../migrations/2018_12_23_100701_add_timestamps_winningbids.php | 2 +- .../2018_12_23_100710_add_timestamps_paymentmethods.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/database/migrations/2018_12_23_100532_add_timestamps_bidders.php b/database/migrations/2018_12_23_100532_add_timestamps_bidders.php index b8b64b1..0fdd583 100644 --- a/database/migrations/2018_12_23_100532_add_timestamps_bidders.php +++ b/database/migrations/2018_12_23_100532_add_timestamps_bidders.php @@ -13,7 +13,7 @@ class AddTimestampsBidders extends Migration */ public function up() { - Schema::table('bidders', function (Blueprint $table) { + Schema::table('bidders', function ($table) { $table->timestamps(); }); } diff --git a/database/migrations/2018_12_23_100646_add_timestamps_checkout.php b/database/migrations/2018_12_23_100646_add_timestamps_checkout.php index 9dd883b..d273d30 100644 --- a/database/migrations/2018_12_23_100646_add_timestamps_checkout.php +++ b/database/migrations/2018_12_23_100646_add_timestamps_checkout.php @@ -13,7 +13,7 @@ class AddTimestampsCheckout extends Migration */ public function up() { - Schema::table('checkout', function (Blueprint $table) { + Schema::table('checkout', function ($table) { $table->timestamps(); }); } diff --git a/database/migrations/2018_12_23_100651_add_timestamps_items.php b/database/migrations/2018_12_23_100651_add_timestamps_items.php index 911ed46..7d1ad48 100644 --- a/database/migrations/2018_12_23_100651_add_timestamps_items.php +++ b/database/migrations/2018_12_23_100651_add_timestamps_items.php @@ -13,7 +13,7 @@ class AddTimestampsItems extends Migration */ public function up() { - Schema::table('items', function (Blueprint $table) { + Schema::table('items', function ($table) { $table->timestamps(); }); } diff --git a/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php b/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php index 1b9697e..463aec3 100644 --- a/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php +++ b/database/migrations/2018_12_23_100701_add_timestamps_winningbids.php @@ -13,7 +13,7 @@ class AddTimestampsWinningbids extends Migration */ public function up() { - Schema::table('winning_bids', function (Blueprint $table) { + Schema::table('winning_bids', function ($table) { $table->timestamps(); }); } diff --git a/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php b/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php index afd9c9a..7d0d4bd 100644 --- a/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php +++ b/database/migrations/2018_12_23_100710_add_timestamps_paymentmethods.php @@ -13,7 +13,7 @@ class AddTimestampsPaymentmethods extends Migration */ public function up() { - Schema::table('payment_methods', function (Blueprint $table) { + Schema::table('payment_methods', function ($table) { $table->timestamps(); }); }