yoake/migrations/2023-08-26-084717_jpn_wordbook/up.sql

15 lines
307 B
MySQL
Raw Normal View History

2023-09-16 22:48:41 -05:00
-- 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
)