yoake/migrations/2023-08-26-084717_jpn_wordbook/up.sql
2023-09-16 22:48:41 -05:00

15 lines
No EOL
307 B
SQL

-- Your SQL goes here
create table jpn_wordbook (
uuid text primary key not null,
ja text not null,
altn text not null,
jm text not null,
fu text not null,
en text not null,
ex text not null,
src text not null,
created datetime not null,
updated datetime not null
)