increments('id'); $table->string('title', 10)->nullable(); $table->string('first_name', 100)->nullable(); $table->string('last_name', 100)->nullable(); $table->date('dob')->nullable(); $table->string('nationality', 50)->nullable(); $table->string('religion', 50)->nullable(); $table->string('assigned_to', 50)->nullable(); $table->text('phone')->nullable(); $table->text('mobile')->nullable(); $table->text('fax')->nullable(); $table->string('email', 50)->nullable(); $table->string('address_line1', 150)->nullable(); $table->string('address_line2', 150)->nullable(); $table->integer('zipcode')->nullable(); $table->string('city', 50)->nullable(); $table->string('state', 50)->nullable(); $table->string('country', 50)->nullable(); $table->string('company', 100)->nullable(); $table->string('company_website', 100)->nullable(); $table->string('designation', 100)->nullable(); $table->string('facebook', 50)->nullable(); $table->string('twitter', 50)->nullable(); $table->string('linkedin', 50)->nullable(); $table->text('documents')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('contacts'); } }