contract's price to double

This commit is contained in:
Thekindbull 2025-03-20 14:13:24 +08:00
parent b9f3c112e8
commit 2335820883

View File

@ -17,8 +17,8 @@ public function up(): void
$table->foreignId('deal_id')->references('id')->on('deals')->onDelete('cascade');
$table->enum('status', ['NEW', 'DECLINE', 'TREATY', 'SUCCESS', 'RESERVATION'])->default('NEW');
$table->string('comment')->nullable();
$table->float('price')->nullable();
$table->float('reward')->nullable();
$table->double('price')->nullable();
$table->double('reward')->nullable();
$table->float('square')->nullable();
$table->integer('floor')->nullable();
$table->timestamps();