id(); $table->string('identifier')->index()->nullable(); $table->string('slug')->unique()->index(); $table->unsignedInteger('referenz')->default(0); $table->string('action')->nullable(); $table->text('object')->nullable(); $table->text('full_text')->nullable(); $table->text('text')->nullable(); $table->integer('int')->nullable(); $table->unsignedTinyInteger('status')->default(0); $table->string('type', 10)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }