All interesting links and reflections throughout time goes here.
Postgres UUID
create extension "uuid-ossp";
| -- Start an instance of postgres | |
| -- docker run --name db -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust postgres:latest | |
| CREATE DATABASE veterinary; | |
| CREATE TABLE person ( | |
| id UUID PRIMARY KEY, | |
| name TEXT | |
| ); |
| package main | |
| import ( | |
| "context" | |
| "time" | |
| "fmt" | |
| "github.com/pmorelli92/bunnify/bunnify" | |
| ) |