Skip to content

Commit

Permalink
Add key relationship to gmb accounts #8 #5
Browse files Browse the repository at this point in the history
  • Loading branch information
drewroberts authored Feb 27, 2021
1 parent 4c8f5ea commit c4d9821
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public function up()
Schema::create('gmb_accounts', function (Blueprint $table) {
$table->id();
$table->string('account_number');
$table->foreignIdFor(app('key'));

$table->foreignIdFor(app('user'), 'creator_id');
$table->foreignIdFor(app('user'), 'updater_id');
Expand Down

0 comments on commit c4d9821

Please sign in to comment.