· 9 years ago · Jan 13, 2017, 09:14 AM
1CREATE TABLE IF NOT EXISTS public.namespace
2(
3 id integer PRIMARY KEY DEFAULT nextval('serial'),
4 label varchar,
5 user_id integer NOT NULL references users(user_id),
6 created timestamp without time zone NOT NULL DEFAULT statement_timestamp(),
7 active boolean NOT NULL DEFAULT false,
8 removed boolean NOT NULL DEFAULT false,
9 kube_exist boolean NOT NULL DEFAULT false,
10);