https://github.com/poad/vercel-functions-example
https://github.com/poad/vercel-functions-example
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/poad/vercel-functions-example
- Owner: poad
- Created: 2024-07-13T09:37:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-27T07:36:21.000Z (about 1 year ago)
- Last Synced: 2025-02-27T09:50:07.401Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://vercel-functions-example-henna.vercel.app
- Size: 1.88 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
);
```