1
0
EQ2Emu/docs/database/world/character_titles.md
2025-05-04 14:34:15 -04:00

470 B

Table: character_titles

Description:

Defines character_titles table in the World database.

Columns:

  • id (int(10), PRIMARY KEY, AUTO_INCREMENT, NOT NULL)
  • char_id (int(10), NOT NULL, DEFAULT 0)
  • title_id (int(10), NOT NULL, DEFAULT 0)

Primary Keys:

  • id

Indexes/Notes:

  • KEY FK_character_titles (char_id)
  • CONSTRAINT FK_character_titles FOREIGN KEY (char_id) REFERENCES characters (id) ON DELETE CASCADE ON UPDATE CASCADE