increments('id'); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->string('avatar')->default(''); $table->unsignedTinyInteger('is_super')->default(0); $table->rememberToken(); $table->unsignedInteger('created_at'); $table->unsignedInteger('updated_at'); $table->unsignedInteger('deleted_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('blog_admins'); } }