Add project files.

This commit is contained in:
clive
2024-11-08 21:45:14 +11:00
parent aba74c8739
commit 58e604fd7c
2292 changed files with 157578 additions and 0 deletions

5
Readme.txt Normal file
View File

@@ -0,0 +1,5 @@
CREATE TABLE Subscriptions (
Id SERIAL PRIMARY KEY, -- Auto-incrementing primary key
Email VARCHAR(255) NOT NULL, -- Email field, required with a max length of 255 characters
DateSubscribed TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP -- Date and time of subscription
);