Guest User

Untitled

a guest
Jul 16th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. CREATE TABLE manufacturers
  2. (
  3. manufacturer_id integer NOT NULL DEFAULT nextval('inventory_manufacturers_manufacturer_id_seq'::regclass),
  4. manufacturer_uuid uuid NOT NULL DEFAULT uuid_generate_v4(),
  5. supplier_id integer NOT NULL DEFAULT 0,
  6. name character varying(32),
  7. title character varying(32),
  8. display_sale_price smallest NOT NULL DEFAULT 0
  9. discount_rate smallest NOT NULL DEFAULT 0
  10. is_active smallest NOT NULL DEFAULT 0
  11. timestamp_created timestamp with time zone NOT NULL DEFAULT now(),
  12. timestamp_modified timestamp with time zone NOT NULL DEFAULT now()
  13. )
  14. WITH (
  15. OIDS=FALSE
  16. );
Add Comment
Please, Sign In to add comment