Files
2024-04-27 23:02:45 +02:00

5 lines
126 B
SQL

create table todos(
id integer primary key,
title text not null,
created_at timestamp default current_timestamp
);