feat: add source breath template

This commit is contained in:
2025-09-29 18:36:53 +03:30
parent 436c7306b2
commit 992a7959fa
4 changed files with 52 additions and 11 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->string('source')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('breathing_templates', function (Blueprint $table) {
$table->dropColumn('source');
});
}
};