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

6 lines
131 B
MySQL
Raw Normal View History

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