1
0
EQ2Emu/database/world/character_custom_spell_display.sql
2025-07-02 23:56:31 -05:00

10 lines
274 B
SQL

DROP TABLE IF EXISTS character_custom_spell_display;
CREATE TABLE character_custom_spell_display (
charid INTEGER NOT NULL,
spell_id INTEGER NOT NULL,
idx INTEGER NOT NULL,
field TEXT NOT NULL,
value TEXT,
PRIMARY KEY (charid, spell_id, idx, field)
);