2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 13:37:21 +08:00
Files
panel/database/migrations/20231101121912_create_cert_dns_table.up.sql
2023-11-02 02:10:32 +08:00

9 lines
321 B
SQL

CREATE TABLE cert_dns
(
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
type varchar(255) NOT NULL,
data text NOT NULL,
created_at datetime NOT NULL,
updated_at datetime NOT NULL
);