id(); $table->string('name'); $table->string('mobile', 15)->unique(); $table->string('password'); $table->string('desc')->nullable(); $table->string('api_token', 100)->nullable(); $table->timestamp('expire_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admins'); } };