调整开通身份
This commit is contained in:
23
config/favorite.php
Normal file
23
config/favorite.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/**
|
||||
* Use uuid as primary key.
|
||||
*/
|
||||
'uuids' => false,
|
||||
|
||||
/*
|
||||
* User tables foreign key name.
|
||||
*/
|
||||
'user_foreign_key' => 'user_id',
|
||||
|
||||
/*
|
||||
* Table name for favorites records.
|
||||
*/
|
||||
'favorites_table' => 'favorites',
|
||||
|
||||
/*
|
||||
* Model name for favorite record.
|
||||
*/
|
||||
'favorite_model' => 'Overtrue\LaravelFavorite\Favorite',
|
||||
];
|
||||
23
config/subscribe.php
Normal file
23
config/subscribe.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/**
|
||||
* Use uuid as primary key.
|
||||
*/
|
||||
'uuids' => false,
|
||||
|
||||
/*
|
||||
* User tables foreign key name.
|
||||
*/
|
||||
'user_foreign_key' => 'user_id',
|
||||
|
||||
/*
|
||||
* Table name for subscriptions records.
|
||||
*/
|
||||
'subscriptions_table' => 'subscriptions',
|
||||
|
||||
/*
|
||||
* Model name for Subscribe record.
|
||||
*/
|
||||
'subscription_model' => \Overtrue\LaravelSubscribe\Subscription::class,
|
||||
];
|
||||
Reference in New Issue
Block a user