bigInteger('id', true); $table->string('tag', 16)->unique('tag_UNIQUE'); $table->string('description', 45)->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tags'); } }