increments('id'); $table->string('rtknr', 20)->nullable(); $table->string('name', 100)->nullable(); $table->string('street', 50)->nullable(); $table->string('address', 500)->nullable(); $table->string('place', 100)->nullable(); $table->string('pincode', 10)->nullable(); $table->string('mobile', 20)->nullable(); $table->string('phone', 20)->nullable(); $table->string('fax', 20)->nullable(); $table->string('email', 35)->nullable(); $table->string('website', 50)->nullable(); $table->string('logo', 250)->nullable(); $table->increments('lat')->nullable(); $table->increments('lng')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('offices'); } }