increments('id'); $table->string('ref', 50)->nullable(); $table->string('name', 100)->nullable(); $table->string('email', 100)->nullable(); $table->string('mobile', 100)->nullable(); $table->string('phone', 100)->nullable(); $table->date('dob')->nullable(); $table->enum('gender', ['Yes', 'No'])->nullable(); $table->enum('marital_status', ['Yes', 'No'])->nullable(); $table->integer('country')->nullable(); $table->string('address', 255)->nullable(); $table->text('documents')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_contact_tenants'); } }