Fix Division

This commit is contained in:
2022-07-15 09:38:25 +07:00
parent a28560f392
commit 0f4c84da6a
14 changed files with 761 additions and 238 deletions

View File

@@ -18,6 +18,9 @@ return new class extends Migration
$table->foreignId('corporate_id')->nullable()->index();
$table->string('code');
$table->string('name')->nullable();
$table->text('description')->nullable();
$table->boolean('active')->default(true);
$table->unique(["corporate_id", "code"], 'corporate_plans_unique');
$table->timestamps();
$table->softDeletes();