add timestamp columns to tables

This commit is contained in:
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()
{
Schema::table('bidders', function (Blueprint $table) {
Schema::table('bidders', function ($table) {
$table->timestamps();
});
}