An open API service indexing awesome lists of open source software.

https://github.com/poad/vercel-functions-example


https://github.com/poad/vercel-functions-example

Last synced: 7 months ago
JSON representation

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
);
```