mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-24 21:54:04 +00:00
Upgrade to Laravel 10, Vite 5+
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Spatie\MediaLibrary\MediaCollections\Models\Media;
|
||||
|
||||
return new class () extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
if (! Schema::hasColumn('media', 'generated_conversions')) {
|
||||
Schema::table('media', function (Blueprint $table) {
|
||||
$table->json('generated_conversions')->nullable();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('media', function (Blueprint $table) {
|
||||
$table->dropColumn('generated_conversions');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user