Small cleanups

This commit is contained in:
Nisse Lommerde 2025-04-13 10:59:12 -04:00
parent d9ca6ec6ba
commit 39facc6d11
3 changed files with 0 additions and 3 deletions

View File

@ -26,7 +26,6 @@ class ProductService extends Model
'amount',
'amount_price',
'notes',
'size_unit',
];
protected $appends = [

View File

@ -15,7 +15,6 @@ public function up(): void
$table->foreignId('service_file_id')->nullable();
$table->foreignId('service_type_id')->nullable();
// $table->string('service_type')->nullable();
$table->string('placement')->nullable();
$table->string('amount')->nullable();
$table->string('amount_price')->nullable();

View File

@ -16,7 +16,6 @@ public function up(): void
$table->decimal('height')->nullable();
$table->string('unit')->default('inch');
$table->integer('setup_number')->nullable();
// $table->string('notes')->nullable();
$table->softDeletes();
$table->timestamps();
});