prefix('sites'), function (Blueprint $table) { $table->id(); $table->string('handle')->unique(); $table->string('name'); $table->string('url'); $table->string('locale'); $table->string('lang'); $table->jsonb('attributes'); $table->timestamps(); }); } public function down() { Schema::dropIfExists($this->prefix('sites')); } };