1
0
EQ2Emu/database/world/chest_traps.sql

10 lines
362 B
SQL

DROP TABLE IF EXISTS chest_traps;
CREATE TABLE chest_traps (
id INTEGER PRIMARY KEY,
applicable_zone_id INTEGER NOT NULL DEFAULT 0,
chest_min_difficulty INTEGER NOT NULL DEFAULT 0,
chest_max_difficulty INTEGER NOT NULL DEFAULT 0,
spell_id INTEGER NOT NULL DEFAULT 0,
spell_tier INTEGER NOT NULL DEFAULT 0
);