updated some functions and got rid of a useless function

This commit is contained in:
2019-02-23 23:30:08 -06:00
parent 84f4716d75
commit 6d239ab7ce
4 changed files with 1 additions and 29 deletions

View File

@@ -31,7 +31,6 @@ class CreateMoonsTable extends Migration
$table->integer('FourthQuantity')->default('0');
$table->string('RentalCorp')->default('Not Rented');
$table->integer('RentalEnd')->default('0');
$table->timestamp('created_at')->nullable();
});
}
}

View File

@@ -23,7 +23,6 @@ class CreateMoonRentsTable extends Migration
$table->string('Contact');
$table->string('Price');
$table->string('Type');
$table->timestamps();
});
}