golang-examples/example-sqlc/authors/postgresql/schema.sql

6 lines
119 B
MySQL
Raw Permalink Normal View History

CREATE TABLE authors (
id BIGSERIAL PRIMARY KEY,
name text NOT NULL,
bio text
);