Files
appstore/apps/sqlpage/0.46.1/config/migrations/0000_init.sql
T

6 lines
127 B
SQL

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