CREATE TABLE "clan_application_table" ( "id" serial PRIMARY KEY NOT NULL, "tag" text NOT NULL, "player_data" jsonb NOT NULL, "discord_id" text NOT NULL, "status" "application_status" DEFAULT 'pending' NOT NULL, "created_at" timestamp DEFAULT now() NOT NULL, CONSTRAINT "clan_application_table_tag_unique" UNIQUE("tag"));
CREATE TABLE "clan_application_table" ( "id" serial PRIMARY KEY NOT NULL, "tag" text NOT NULL, "player_data" jsonb NOT NULL, "discord_id" text NOT NULL, "status" "application_status" DEFAULT 'pending' NOT NULL, "created_at" timestamp DEFAULT now() NOT NULL, CONSTRAINT "clan_application_table_tag_unique" UNIQUE("tag"));
I don't see anywhere where it defined application_status enum.