mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 18:27:13 +08:00
8 lines
262 B
SQL
8 lines
262 B
SQL
CREATE TABLE monitors
|
|
(
|
|
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
info text NOT NULL,
|
|
created_at datetime NOT NULL,
|
|
updated_at datetime NOT NULL
|
|
);
|