string('token', 64)->default('')->unique('IDEX_token'); $table->string('username', 100)->nullable()->default('')->index('IDEX_username'); $table->string('platform', 50)->nullable()->default(''); $table->bigInteger('update')->nullable()->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('umeng'); } }