mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-17 22:40:51 +01:00
12 lines
196 B
SQL
12 lines
196 B
SQL
CREATE TABLE `haex_notofications` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`title` text,
|
|
`text` text,
|
|
`type` text NOT NULL,
|
|
`read` integer,
|
|
`date` text,
|
|
`image` text,
|
|
`alt` text,
|
|
`icon` text
|
|
);
|