Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. CREATE TABLE `SystemMoneyAccount` (
  2. `accountId` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  3. `changerId` int(11) DEFAULT NULL,
  4. `totalMoney` decimal(11,2) DEFAULT NULL,
  5. `totalFee` decimal(5,2) DEFAULT NULL,
  6. `changeMoney` decimal(11,2) DEFAULT NULL,
  7. `changeFee` decimal(11,2) DEFAULT NULL,
  8. `changeDate` datetime DEFAULT NULL,
  9. PRIMARY KEY (`accountId`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement