mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
6 lines
109 B
MySQL
6 lines
109 B
MySQL
|
|
CREATE TABLE `onboarding` (
|
||
|
|
`id` text PRIMARY KEY NOT NULL,
|
||
|
|
`step` text NOT NULL,
|
||
|
|
`previous_step` text
|
||
|
|
);
|