/
germanubis
/
sqlx
Обзор
Документация
Войти
/
germanubis
/
sqlx
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/postgres/migrations/2_post.sql
8 строк
244 B
Austin Bonander
feat: implement testing utilities (#2001)
03 авг 2022, 00:38
Не верифицирован
03 авг 2022, 00:38
054f619
Код
Авторство
О чём код?
create table post ( post_id uuid primary key default uuid_generate_v1mc(), user_id uuid not null references "user"(user_id), content text not null, created_at timestamptz default now() ); create index on post(created_at desc);