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