increments('id'); $table->integer('unit_id')->nullable(); $table->string('name', 200)->nullable(); $table->string('mobile', 50)->nullable(); $table->string('email', 100)->nullable(); $table->bigInteger('price')->nullable(); $table->text('documents')->nullable(); $table->string('status', 30)->nullable(); $table->integer('approved_by')->nullable(); $table->dateTime('approved_at')->nullable(); $table->integer('rejected_by')->nullable(); $table->dateTime('rejected_at')->nullable(); $table->string('rejected_reason', 50)->nullable(); $table->integer('agent_id')->nullable(); $table->integer('created_by')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_offplan_bookings'); } }