5 lines
126 B
SQL
5 lines
126 B
SQL
create table todos(
|
|
id integer primary key,
|
|
title text not null,
|
|
created_at timestamp default current_timestamp
|
|
); |