Files
appstore/apps/sqlpage/latest/config/migrations/0000_init.sql
T
2026-07-31 03:58:42 +08:00

6 lines
127 B
SQL

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