CREATE TABLE "game_settings" ( "id" text PRIMARY KEY DEFAULT 'default' NOT NULL, "leveling" jsonb NOT NULL, "economy" jsonb NOT NULL, "inventory" jsonb NOT NULL, "lootdrop" jsonb NOT NULL, "trivia" jsonb NOT NULL, "moderation" jsonb NOT NULL, "commands" jsonb DEFAULT '{}'::jsonb, "system" jsonb DEFAULT '{}'::jsonb, "created_at" timestamp with time zone DEFAULT now() NOT NULL, "updated_at" timestamp with time zone DEFAULT now() NOT NULL );