added additional psql instructions

This commit is contained in:
Soulful Sailer
2026-03-04 22:51:44 -06:00
parent c3d90c6da3
commit 8de2a3a99d

View File

@@ -22,6 +22,11 @@ CREATE TABLE events (
description text description text
); );
``` ```
Then create the section entries:
```sql
INSERT INTO sections (name) VALUES ('accepted');
INSERT INTO sections (name) VALUES ('proposed');
```
```sh ```sh
cd /opt cd /opt
git clone https://github.com/Soulful-Sailer/Event-Tracker/ git clone https://github.com/Soulful-Sailer/Event-Tracker/