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

6 lines
131 B
SQL

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