You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Schema::create('location_payment_settings', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(Location::class)->unique(); // NOTE - unique() added -- there should be exactly one record per location!
$table->string('stripe_publishable')->nullable()->unique();
$table->text('stripe_secret')->nullable();
$table->foreignIdFor(app('user'), 'creator_id');
$table->foreignIdFor(app('user'), 'updater_id');
$table->timestamps();
});
Create corresponding LocationPaymentSettings model, factory and test. Package tipoff/locationsshould become a required dependency as part of this.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Migration:
Create corresponding LocationPaymentSettings model, factory and test. Package
tipoff/locationsshould become a required dependency as part of this.Beta Was this translation helpful? Give feedback.
All reactions