Advertisement
NyxGrimlock

SCDBQuery.sql

Aug 11th, 2014
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.61 KB | None | 0 0
  1.  
  2. SET FOREIGN_KEY_CHECKS=0;
  3.  
  4. -- ----------------------------
  5. -- Table structure for `Banking_DATA`
  6. -- ----------------------------
  7. DROP TABLE IF EXISTS `banking_data`;
  8. CREATE TABLE `Banking_DATA` (
  9.   `PlayerUID` varchar(20) NOT NULL DEFAULT '0',
  10.   `PlayerName` varchar(128) NOT NULL DEFAULT 'Null',
  11.   `BankSaldo` bigint(24) NOT NULL DEFAULT '0',
  12.   PRIMARY KEY (`PlayerUID`)
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  14.  
  15. -- ----------------------------
  16. -- Table structure for `Character_DATA`
  17. -- ----------------------------
  18.  
  19. ALTER TABLE Character_DATA ADD CashMoney int(11) NOT NULL DEFAULT 0 AFTER last_updated;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement