Skip to content

Commit

Permalink
docs: add todos to the init.sql (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
xnought authored Nov 15, 2023
1 parent 6ee375c commit d51c8e2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backend/init.sql
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down

0 comments on commit d51c8e2

Please sign in to comment.