Files
2026-07-03 13:46:54 +00:00

43 lines
1.2 KiB
PHP

<?php
return [
'connection' => null,
'table_prefix' => 'lunar_',
/*
|--------------------------------------------------------------------------
| Morph Prefix
|--------------------------------------------------------------------------
|
| If you wish to prefix Lunar's morph mapping in the database, you can
| set that here e.g. `lunar_product` instead of `product`
|
*/
'morph_prefix' => null,
/*
|--------------------------------------------------------------------------
| Users Table ID
|--------------------------------------------------------------------------
|
| Lunar adds a relationship to your 'users' table and by default assumes
| a 'bigint'. You can change this to either an 'int' or 'uuid'.
|
*/
'users_id_type' => 'bigint',
/*
|--------------------------------------------------------------------------
| Disable migrations
|--------------------------------------------------------------------------
|
| Prevent Lunar`s default package migrations from running for the core.
| Set to 'true' to disable.
|
*/
'disable_migrations' => false,
];