diff --git a/migrations/instances.sql b/migrations/instances.sql new file mode 100644 index 0000000..01df94d --- /dev/null +++ b/migrations/instances.sql @@ -0,0 +1,9 @@ +CREATE TABLE IF NOT EXISTS `intances` ( + `id` VARCHAR NOT NULL PRIMARY KEY, + `uuid` VARCHAR NULL, + `raw_base_config` TEXT NULL, + `base_config` TEXT NULL, + `created_at` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` DATETIME NULL, + `deleted_at` DATETIME NULL +);