mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
6 lines
127 B
SQL
6 lines
127 B
SQL
create table todos(
|
|
id integer primary key,
|
|
title text not null,
|
|
created_at timestamp default current_timestamp
|
|
);
|