idk push for pais
build / build (push) Successful in 19s

This commit is contained in:
2026-08-16 17:00:56 -06:00
parent ab77858eda
commit 793e2deae8
20 changed files with 480 additions and 360 deletions
View File
View File
@@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
drop table words
@@ -0,0 +1,6 @@
-- Your SQL goes here
create table words (
id integer not null primary key autoincrement,
word varchar not null,
info text not null
)