increments('id'); $table->timestamps(); $table->string('url'); $table->string('devurl')->nullable(); $table->string('name'); $table->json('address')->nullable(); $table->string('description')->nullable(); $table->string('email'); $table->string('phone')->nullable(); $table->string('fax')->nullable(); $table->string('logo')->nullable(); $table->string('favicon')->nullable(); $table->string('theme'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sites'); } }