Files
l2j_mobius/trunk/dist/sql/game/punishments.sql
mobius a6a3718849
2015-01-01 20:02:50 +00:00

10 lines
344 B
SQL

CREATE TABLE IF NOT EXISTS `punishments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(255) NOT NULL,
`affect` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`expiration` bigint NOT NULL,
`reason` TEXT NOT NULL,
`punishedBy` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;