fix field description from string to text

This commit is contained in:
aslan 2024-02-14 09:49:56 +03:00
parent 1659980a2e
commit 2a21e25200
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ return new class extends Migration
Schema::create('faculties', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('description');
$table->text('description');
$table->integer('position');
$table->string('slug');
$table->foreignId('educational_institution_id')->constrained('educational_institutions');