landsandboat/sql/char_merit.sql
Ixion c460a89139 Ixion is Come!
- Rebranding.
- Migrate to GitLab.
- Add support for database updates when using Docker.
- Give purpose to version.h (adjust minor version with client updates).
- Add an in-game `!ver` command.
- Remove references to AGPL.
2021-04-17 18:24:14 -04:00

12 lines
390 B
SQL

--
-- Table structure for table `char_merit`
--
DROP TABLE IF EXISTS `char_merit`;
CREATE TABLE `char_merit` (
`charid` int(10) unsigned NOT NULL,
`meritid` smallint(5) unsigned NOT NULL,
`upgrades` smallint(5) unsigned NOT NULL,
INDEX `char_merits_charid_index` (`charid`),
UNIQUE KEY `idx_char_merit_meritid_charid` (`meritid`,`charid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;