Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/getcandy/candy-api into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
stevethitchman committed Nov 13, 2020
2 parents 3306328 + 9e59865 commit 181a387
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public function up()

Schema::create('addresses', function (Blueprint $table) {
$table->increments('id');
$table->morphs('addressable');
$table->string('salutation')->nullable();
$table->string('firstname')->nullable();
$table->string('lastname')->nullable();
Expand All @@ -43,7 +44,6 @@ public function up()
$table->text('delivery_instructions')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->json('meta')->nullable();
$table->morphs('addressable');
$table->timestamps();
});

Expand Down

0 comments on commit 181a387

Please sign in to comment.