Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Table: public.acesso
- -- DROP TABLE IF EXISTS public.acesso;
- CREATE TABLE IF NOT EXISTS public.acesso
- (
- id_acesso bigserial NOT NULL,
- xid bigint DEFAULT txid_current(),
- statusapagado boolean DEFAULT false,
- ip character varying(15) COLLATE pg_catalog."default",
- datahoraacesso timestamp with time zone DEFAULT CURRENT_TIMESTAMP(0),
- referer text COLLATE pg_catalog."default",
- CONSTRAINT acesso_pkey PRIMARY KEY (id_acesso)
- )
- TABLESPACE pg_default;
- ALTER TABLE IF EXISTS public.acesso
- OWNER to postgres;
Add Comment
Please, Sign In to add comment