From d51c8e2e3c03203a2d5f8caf62bd7760b13f2eb4 Mon Sep 17 00:00:00 2001 From: Donny Bertucci Date: Wed, 15 Nov 2023 11:48:35 -0800 Subject: [PATCH] docs: add todos to the init.sql (#64) --- backend/init.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/init.sql b/backend/init.sql index 9235c29b..99d3a52b 100644 --- a/backend/init.sql +++ b/backend/init.sql @@ -1,3 +1,4 @@ +-- Postgres manual: https://www.postgresql.org/docs/current/ -- IMPORTANT -- This file only gets run once, when the database is created. -- If you need to revise this file read: @@ -10,6 +11,9 @@ CREATE TABLE proteins ( -- todo: make the id meaningful, like Lb17_comp535_c2_seq1, discuss this id integer GENERATED ALWAYS AS IDENTITY PRIMARY KEY, -- increment id for now name text NOT NULL UNIQUE + -- TODO: filePDBAlphaFold + -- TODO: length + -- TODO: mass ); -- Some inserted values for now