Files
mod-reagent-bank/sql/db-characters/base/create_table.sql
2022-06-23 02:04:19 -03:00

9 lines
277 B
SQL

CREATE TABLE IF NOT EXISTS `custom_reagent_bank` (
`character_id` int(11) NOT NULL,
`item_entry` int(11) NOT NULL,
`item_subclass` int(11) NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`character_id`,`item_entry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;