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->string('web')->nullable(); $table->string('email')->nullable(); $table->string('facebook')->nullable(); $table->string('instagram')->nullable(); $table->string('twitter')->nullable(); $table->string('youtube')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pages'); } }