mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
fix code style
This commit is contained in:
parent
ee2b53f824
commit
369bf1b965
@ -9,7 +9,7 @@
|
|||||||
/**
|
/**
|
||||||
* Get the migration connection name.
|
* Get the migration connection name.
|
||||||
*/
|
*/
|
||||||
public function getConnection(): string|null
|
public function getConnection(): ?string
|
||||||
{
|
{
|
||||||
return config('telescope.storage.database.connection');
|
return config('telescope.storage.database.connection');
|
||||||
}
|
}
|
||||||
@ -46,9 +46,9 @@ public function up(): void
|
|||||||
$table->index('tag');
|
$table->index('tag');
|
||||||
|
|
||||||
$table->foreign('entry_uuid')
|
$table->foreign('entry_uuid')
|
||||||
->references('uuid')
|
->references('uuid')
|
||||||
->on('telescope_entries')
|
->on('telescope_entries')
|
||||||
->onDelete('cascade');
|
->onDelete('cascade');
|
||||||
});
|
});
|
||||||
|
|
||||||
$schema->create('telescope_monitoring', function (Blueprint $table) {
|
$schema->create('telescope_monitoring', function (Blueprint $table) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user