edit orange pills

This commit is contained in:
HolgerHatGarKeineNode
2023-02-16 20:15:34 +01:00
parent 9b05c8eda5
commit 2350e9c2f4
9 changed files with 248 additions and 167 deletions

View File

@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up()
{
Schema::table('orange_pills', function (Blueprint $table) {
$table->text('comment')
->nullable();
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
Schema::table('orange_pills', function (Blueprint $table) {
//
});
}
};