id(); $table->string('name')->nullable(); $table->string('email')->unique()->nullable(); $table->string('apple_id')->unique()->nullable(); $table->string('wechat_id')->unique()->nullable(); $table->integer('level')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('push_deer_users'); } }