increments('id'); $table->string('username', 255)->nullable(); $table->string('password', 50)->nullable(); $table->string('name', 50)->nullable(); $table->string('access_token', 50)->nullable(); $table->text('cookies')->nullable(); $table->string('faid', 50)->nullable(); $table->string('birthday', 50)->nullable(); $table->string('phone_number', 50)->nullable(); $table->string('slug', 100)->nullable(); $table->integer('user_id')->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('facebook_accounts'); } }