smallIncrements('id'); $table->unsignedTinyInteger('source')->default(0); $table->unsignedTinyInteger('medium')->default(0); $table->unsignedTinyInteger('codec')->default(0); $table->unsignedTinyInteger('standard')->default(0); $table->unsignedTinyInteger('processing')->default(0); $table->unsignedTinyInteger('team')->default(0); $table->unsignedTinyInteger('audiocodec')->default(0); $table->string('name', 30)->default(''); $table->string('class_name')->nullable(); $table->string('image')->default(''); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('secondicons'); } }