mirror of
https://github.com/sern-handler/automata
synced 2026-06-06 01:16:51 +00:00
7 lines
143 B
SQL
7 lines
143 B
SQL
CREATE TABLE `feedback` (
|
|
`id` integer PRIMARY KEY NOT NULL,
|
|
`feedback` text NOT NULL,
|
|
`inputText` text NOT NULL,
|
|
`route` text NOT NULL
|
|
);
|