Guest User

Untitled

a guest
Jan 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. /*
  2. MySQL Backup
  3. Source Server Version: 5.5.27
  4. Source Database: dayz
  5. Date: 10/16/2012 03:54:12
  6. */
  7.  
  8. SET FOREIGN_KEY_CHECKS=0;
  9.  
  10. -- ----------------------------
  11. -- Table structure for `deployable`
  12. -- ----------------------------
  13. DROP TABLE IF EXISTS `deployable`;
  14. CREATE TABLE `deployable` (
  15. `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  16. `class_name` varchar(100) DEFAULT NULL,
  17. PRIMARY KEY (`id`),
  18. UNIQUE KEY `uq1_deployable` (`class_name`)
  19. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
Add Comment
Please, Sign In to add comment