prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 04d596b0eb - Show all commits

View File

@ -10,7 +10,7 @@ return new class extends Migration
{ {
Schema::create('departments', function (Blueprint $table) { Schema::create('departments', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('name', 255)->unique(); $table->string('name', 255);
$table->text('description')->nullable(); $table->text('description')->nullable();
$table->smallInteger('position'); $table->smallInteger('position');
$table->string('slug', 255)->unique(); $table->string('slug', 255)->unique();