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