Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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


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

Last synced: 5 days 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
);
```