engine = 'InnoDB'; $table->increments('id'); $table->text('message')->nullable(); $table->string('remote_id'); $table->integer('page_id'); $table->string('href', 500)->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('zoomyboy_social_posts'); } }