l2j_mobius/trunk/dist/db_installer/sql/game/residence_functions.sql
2016-06-12 01:34:09 +00:00

8 lines
257 B
SQL

DROP TABLE IF EXISTS `residence_functions`;
CREATE TABLE IF NOT EXISTS `residence_functions` (
`id` int NOT NULL ,
`level` int NOT NULL ,
`expiration` bigint NOT NULL ,
`residenceId` int NOT NULL ,
PRIMARY KEY (`id`, `level`, `residenceId`)
);