add timestamp columns to tables

This commit is contained in:
Russ Long 2018-12-23 10:10:58 -05:00
parent e36b60af8e
commit 55fa60d28b
5 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ class AddTimestampsBidders extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('bidders', function (Blueprint $table) { Schema::table('bidders', function ($table) {
$table->timestamps(); $table->timestamps();
}); });
} }

View File

@ -13,7 +13,7 @@ class AddTimestampsCheckout extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('checkout', function (Blueprint $table) { Schema::table('checkout', function ($table) {
$table->timestamps(); $table->timestamps();
}); });
} }

View File

@ -13,7 +13,7 @@ class AddTimestampsItems extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('items', function (Blueprint $table) { Schema::table('items', function ($table) {
$table->timestamps(); $table->timestamps();
}); });
} }

View File

@ -13,7 +13,7 @@ class AddTimestampsWinningbids extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('winning_bids', function (Blueprint $table) { Schema::table('winning_bids', function ($table) {
$table->timestamps(); $table->timestamps();
}); });
} }

View File

@ -13,7 +13,7 @@ class AddTimestampsPaymentmethods extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('payment_methods', function (Blueprint $table) { Schema::table('payment_methods', function ($table) {
$table->timestamps(); $table->timestamps();
}); });
} }