increments('id'); $table->string('name', 200)->nullable(); $table->string('phone', 50)->nullable(); $table->string('email', 50)->nullable(); $table->string('website', 50)->nullable(); $table->string('fax', 50)->nullable(); $table->text('notes')->nullable(); $table->string('address', 200)->nullable(); $table->string('description', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('accounts'); } }