api doctor detail

This commit is contained in:
Muhammad Fajar
2022-10-27 14:37:12 +07:00
parent 0ece467d21
commit 2f84f43ae5
11 changed files with 245 additions and 106 deletions

View File

@@ -18,13 +18,13 @@ return new class extends Migration
$table->string('rev');
$table->string('version')->nullable();
$table->string('code');
$table->string('name');
$table->string('name', 256);
$table->text('description')->nullable();
$table->string('parent_code')->nullable()->index();
$table->timestamps();
$table->softDeletes();
$table->foreignId('created_by')->nullable();
$table->foreignId('updated_by')->nullable();
$table->foreignId('deleted_by')->nullable();