linkstash_server/migrations/001_create_links_table.sql
2024-09-21 13:37:01 +01:00

9 lines
174 B
SQL

create table if not exists Links (
uuid text not null,
href text not null,
created_at datetime not null,
updated_at datetime not null,
title text,
description text
);