engine = 'InnoDB'; $table->increments('id'); $table->string('name'); $table->string('slug'); $table->string('access_token'); $table->string('remote_id'); $table->string('type'); $table->string('cover')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('zoomyboy_social_pages'); } }