bind title and subheading to the respective document

This commit is contained in:
Hendrik Hagendorn
2023-01-19 20:23:15 +01:00
parent d9d342f9d4
commit 12ca46381a
7 changed files with 111 additions and 38 deletions

View File

@ -0,0 +1,34 @@
<?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('documents', function (Blueprint $table) {
$table->string('title')->nullable()->default('');
$table->string('subheading')->nullable()->default('');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('documents', function (Blueprint $table) {
$table->dropColumn('title');
$table->dropColumn('subheading');
});
}
};