diff --git a/README.md b/README.md new file mode 100644 index 0000000..cb09081 --- /dev/null +++ b/README.md @@ -0,0 +1,262 @@ +## tables in your postgresql todo database + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
List of relations
SchemaNameTypeOwner
publiccategorytabletodo
publiccategory_id_seqsequencetodo
publiccontributortabletodo
publiccontributor_id_seqsequencetodo
publicemail_white_listtabletodo
publicemail_white_list_id_seqsequencetodo
publictasktabletodo
publictask_id_seqsequencetodo
+

(8 rows)
+

+ +### email_white_list + + + + + + + + + + + + + + + + + + + + + + + + +
Table "public.email_white_list"
ColumnTypeCollationNullableDefault
idinteger  not nullnextval('email_white_list_id_seq'::regclass)
emailcharacter varying(120)  not null 
+

Indexes:
+    "email_white_list_pkey" PRIMARY KEY, btree (id)
+    "email_white_list_email_key" UNIQUE CONSTRAINT, btree (email)
+

+ +### contributor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table "public.contributor"
ColumnTypeCollationNullableDefault
idinteger  not nullnextval('contributor_id_seq'::regclass)
namecharacter varying(64)  not null 
emailcharacter varying(120)  not null 
password_hashcharacter varying(128)     
totp_keycharacter(16)     
use_totpboolean    false
+

Indexes:
+    "contributor_pkey" PRIMARY KEY, btree (id)
+    "contributor_email_key" UNIQUE CONSTRAINT, btree (email)
+    "contributor_name_key" UNIQUE CONSTRAINT, btree (name)
+

+ +### category + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table "public.category"
ColumnTypeCollationNullableDefault
idinteger  not nullnextval('category_id_seq'::regclass)
namecharacter varying(128)  not null 
contributor_idinteger  not null 
hiddenboolean    false
+

Indexes:
+    "category_pkey" PRIMARY KEY, btree (id)
+    "category_name_key" UNIQUE CONSTRAINT, btree (name)
+

+ +### task + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table "public.task"
ColumnTypeCollationNullableDefault
idinteger  not nullnextval('task_id_seq'::regclass)
contenttext  not null 
contributor_idinteger  not null 
catidinteger  not null 
doneboolean    false
priorityinteger     
timestamptimestamp without time zone     
+

Indexes:
+    "task_pkey" PRIMARY KEY, btree (id)
+

+