This commit is contained in:
2026-08-04 13:06:50 -06:00
parent 5a6cb93bab
commit a2404d294e
18 changed files with 1123 additions and 22 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
)