feat: add description to breathing template

This commit is contained in:
2025-09-14 12:12:52 +03:30
parent 35fb0cd417
commit ca30919f64
4 changed files with 96 additions and 53 deletions
@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('breathing_templates', function (Blueprint $table) {
$table->text('description')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('breathing_templates', function (Blueprint $table) {
$table->dropColumn('description');
});
}
};