increments('id'); $table->string('title'); $table->string('text_short')->nullable(); $table->text('text')->nullable(); $table->string('slug')->nullable(); $table->string('image')->nullable(); $table->boolean('online'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('events'); } }