2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 03:22:32 +08:00
Files
panel/database/migrations/20230621124844_create_monitors_table.up.sql
2023-06-22 00:09:56 +08:00

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
);