eq2go/sql/character_quest_rewards.sql

13 lines
484 B
SQL
Executable File

DROP TABLE IF EXISTS character_quest_rewards;
CREATE TABLE character_quest_rewards (
char_id INTEGER NOT NULL DEFAULT 0,
quest_id INTEGER NOT NULL DEFAULT 0,
indexed INTEGER NOT NULL DEFAULT 0,
is_temporary INTEGER NOT NULL DEFAULT 0,
is_collection INTEGER NOT NULL DEFAULT 0,
has_displayed INTEGER NOT NULL DEFAULT 0,
tmp_coin INTEGER NOT NULL DEFAULT 0,
tmp_status INTEGER NOT NULL DEFAULT 0,
description TEXT NOT NULL DEFAULT ''
);