83 - Promoting Charges to Objects

This commit is contained in:
Adam Wathan
2017-03-17 12:19:35 -04:00
parent 442cc3f240
commit 6e983c593c
4 changed files with 50 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ class CreateOrdersTable extends Migration
{
Schema::create('orders', function (Blueprint $table) {
$table->increments('id');
$table->string('confirmation_number')->nullable();
$table->string('confirmation_number');
$table->integer('amount');
$table->string('email');
$table->string('card_last_four')->nullable();