· 8 years ago · May 29, 2018, 04:52 PM
1DROP SEQUENCE "public"."player_topup_seq";
2CREATE SEQUENCE "public"."player_topup_seq"
3 INCREMENT 1
4 MINVALUE 1
5 MAXVALUE 9223372036854775807
6 START 25
7 CACHE 1;
8SELECT setval('"public"."player_topup_seq"', 25, true);
9
10
11
12DROP TABLE IF EXISTS "public"."player_topup_seq";
13CREATE TABLE "public"."player_topup" (
14"id" int8 DEFAULT nextval('contas_seq'::regclass) NOT NULL ,
15"player_id" int8,
16"item_id" int8,
17"count" int8,
18"point" int4,
19"cash" int4,
20"exp" int4,
21"medal" int4,
22"insignia" int4,
23"brooch" int4,
24"blueorder" int4
25)
26WITH (OIDS=FALSE)
27
28;