Files
David Rousselie d3bac73679 Initial commit
Basic POST and GET callback have been implemented
2019-03-03 23:48:26 +01:00

6 lines
127 B
SQL

CREATE TABLE callbacks (
id SERIAL PRIMARY KEY,
url VARCHAR NOT NULL,
scheduled_date TIMESTAMP WITH TIME ZONE NOT NULL
)