diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2023-02-12 14:50:42 -0500 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2023-02-12 14:50:42 -0500 |
| commit | 4b8de0bcf0ca598804a9d462933d492232b4b314 (patch) | |
| tree | c0dc84333273faa56915f90b27865b2374679de4 /dynamic/schema-comments.sql | |
| parent | 8e2abe9549360f37f6703bd995b8278e4fb6b291 (diff) | |
Merge branch 'self-hosted-comments'
It's been working well enough. I think it's time to get the initial version of
this on `master'.
Diffstat (limited to 'dynamic/schema-comments.sql')
| -rw-r--r-- | dynamic/schema-comments.sql | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/dynamic/schema-comments.sql b/dynamic/schema-comments.sql deleted file mode 100644 index 1c690f3..0000000 --- a/dynamic/schema-comments.sql +++ /dev/null @@ -1,12 +0,0 @@ -CREATE TABLE comments( - id SERIAL PRIMARY KEY, - approved TIMESTAMP, - submitted TIMESTAMP NOT NULL, - slug VARCHAR(100) NOT NULL, - name VARCHAR(50) NOT NULL, - email VARCHAR(100), - url VARCHAR(100), - comment VARCHAR(1024) NOT NULL -); - --- Use `now' for `submitted'. |