Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.37 KB | None | 0 0
  1. CREATE TABLE `t_user_guild_terr` (
  2.   `guildid` bigint(21) NOT NULL DEFAULT '0',
  3.   `deleted` tinyint(4) DEFAULT '0',
  4.   `EXP` int(11) DEFAULT '0',
  5.   `money` int(11) DEFAULT '0',
  6.   `lumber` int(11) DEFAULT '0',
  7.   `guildpoints` int(11) DEFAULT '0',
  8.   `building` blob,
  9.   `bank` blob,
  10.   `bankhistory` blob,
  11.   PRIMARY KEY  (`guildid`)
  12. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  13.  
  14. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement