id(); $table->string('name', 100)->default('New Badge'); $table->string('description', 2000)->default('Earn this badge from my game.'); $table->bigInteger('creator_id'); $table->bigInteger('game_id'); $table->boolean('awardable')->default(0); $table->boolean('approved')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('badges'); } };