Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. /*
  2. Navicat PGSQL Data Transfer
  3.  
  4. Source Server : localhost_5432
  5. Source Server Version : 100300
  6. Source Host : localhost:5432
  7. Source Database : postgres
  8. Source Schema : public
  9.  
  10. Target Server Type : PGSQL
  11. Target Server Version : 100300
  12. File Encoding : 65001
  13.  
  14. Date: 2018-04-30 01:55:01
  15. */
  16.  
  17.  
  18. -- ----------------------------
  19. -- Table structure for player_topup
  20. -- ----------------------------
  21. DROP TABLE IF EXISTS "public"."player_topup";
  22. CREATE TABLE "public"."player_topup" (
  23. "id" int8 ,
  24. "player_id" int8,
  25. "item_id" int8,
  26. "count" int8,
  27. "point" int4,
  28. "cash" int4,
  29. "exp" int4,
  30. "medal" int4,
  31. "insignia" int4,
  32. "brooch" int4,
  33. "blueorder" int4
  34. )
  35. WITH (OIDS=FALSE)
  36.  
  37. ;
  38.  
  39. -- ----------------------------
  40. -- Alter Sequences Owned By
  41. -- ----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement