falyptus

FaithSQL - Table Commands.

Jun 9th, 2012
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.84 KB | None | 0 0
  1. -- author Keal
  2. -- ----------------------------
  3. -- Table structure for commands
  4. -- ----------------------------
  5. DROP TABLE IF EXISTS `commands`;
  6. CREATE TABLE `commands` (
  7.   `commandName` text NOT NULL COMMENT 'le nom de la commande',
  8.   `actionId` INT(11) DEFAULT NULL COMMENT 'l''actionId de la commande à effectuer',
  9.   `args` text COMMENT 'arguments de la commande',
  10.   `commandInfos` text COMMENT 'description de la commande'
  11. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  12.  
  13. -- ----------------------------
  14. -- Records of commands
  15. -- ----------------------------
  16. INSERT INTO `commands` VALUES ('.bontarien', '11', '1,1', 'Définis l\'alignement Bontarien.');
  17. INSERT INTO `commands` VALUES ('.brakmarien', '11', '2,1', 'Définis l\'alignement Brakmarien.');
  18. INSERT INTO `commands` VALUES ('.mercenaire', '11', '3,1', 'Définis l\'alignement Mercenaire.');
Advertisement
Add Comment
Please, Sign In to add comment