https://github.com/poad/vercel-functions-example
https://github.com/poad/vercel-functions-example
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/poad/vercel-functions-example
- Owner: poad
- Created: 2024-07-13T09:37:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-07-07T09:56:09.000Z (11 days ago)
- Last Synced: 2026-07-07T11:23:15.425Z (10 days ago)
- Language: TypeScript
- Homepage: https://vercel-functions-example-henna.vercel.app
- Size: 3.59 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vercel-functions-example
```sql
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
create table todos (
id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,
content text not null,
createdAt timestamp default current_timestamp
);
```