mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 12:41:24 +00:00
7 lines
137 B
MySQL
7 lines
137 B
MySQL
|
create table reboot_suggested_packages
|
||
|
(
|
||
|
created_at timestamp default now() not null,
|
||
|
|
||
|
name text unique not null
|
||
|
)
|