add directory for common assets

This commit is contained in:
2025-04-15 15:51:27 -04:00
parent c0a59bd30a
commit 911983d250
68 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- CreateTable
CREATE TABLE `traceroutes` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`node_id` BIGINT NOT NULL,
`route` JSON NOT NULL,
`created_at` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
`updated_at` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
INDEX `traceroutes_created_at_idx`(`created_at`),
INDEX `traceroutes_updated_at_idx`(`updated_at`),
INDEX `traceroutes_node_id_idx`(`node_id`),
PRIMARY KEY (`id`)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;