/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/enum/mysql/schema.sql
8 строк
317 B
Stephane Bres
feat: Null enums types (#1485)
05 июл 2022, 13:27
Не верифицирован
05 июл 2022, 13:27
4a0bce2
Код
Авторство
О чём код?
CREATE TABLE users ( id integer NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name varchar(255) NOT NULL, last_name varchar(255), age integer NOT NULL, shoe_size ENUM('x-small', 'small', 'medium', 'large', 'x-large') NOT NULL, shirt_size ENUM('x-small', 'small', 'medium', 'large', 'x-large') );