added invoice creation for the database to moon rental invoice

This commit is contained in:
2020-05-11 01:11:13 -05:00
parent a3b712d709
commit c6ad585d49
3 changed files with 59 additions and 4 deletions

View File

@@ -21,9 +21,9 @@ class CreateAllianceMoonRentalInvoicesTable extends Migration
$table->unsignedBigInteger('corporation_id');
$table->string('corporation_name');
$table->text('rental_moons');
$table->decimal('invoice_amount', 20, 2);
$table->decimal('invoice_amount', 17, 2);
$table->dateTime('due_date');
$table->enum('paid', ['Yes', 'No']);
$table->enum('paid', ['Yes', 'No'])->default('No');
$table->timestamps();
});
}