bigIncrements('id'); $table->string('title'); $table->longText('md'); $table->timestamps(); }); Schema::create('now', function(Blueprint $table) { $table->bigIncrements('id'); $table->longText('md'); $table->timestamps(); }); Schema::create('projects', function(Blueprint $table) { $table->bigIncrements('id'); $table->string('title'); $table->longText('md'); $table->timestamps(); }); Schema::create('setup', function(Blueprint $table) { $table->bigIncrements('id'); $table->string('title'); $table->longText('md'); $table->timestamps(); }); } public function down() { Schema::dropIfExists('projects'); Schema::dropIfExists('now'); Schema::dropIfExists('posts'); } }