Loading src/migrations/scripts/20251023141300_InitialDatabase.sql +0 −1 Original line number Diff line number Diff line Loading @@ -144,7 +144,6 @@ CREATE TABLE `locations_vlans` ( `location_vlan_id` bigint unsigned NOT NULL AUTO_INCREMENT, `location_id` bigint unsigned NOT NULL, `vlan_id` bigint unsigned NOT NULL, `is_active` tinyint unsigned NOT NULL DEFAULT (1), `created_at` datetime NOT NULL DEFAULT (utc_timestamp()), `updated_at` datetime NOT NULL DEFAULT (utc_timestamp()), PRIMARY KEY (`location_vlan_id`), Loading src/migrations/scripts/20251027152500_InitialDataLoad.sql +2 −2 Original line number Diff line number Diff line Loading @@ -19,8 +19,8 @@ INSERT INTO vlans (vlan_id,name,descr,notes,created_at,updated_at,`number`,area_ INSERT INTO locations (location_id,name,descr,created_at,updated_at,notes) VALUES (1,'Taylor Hall','427 Lorch St.','2025-10-27 19:11:33','2025-10-27 19:11:33',NULL); INSERT INTO locations_vlans (location_vlan_id,location_id,vlan_id,created_at,updated_at,is_active) VALUES (1,1,2,'2025-10-27 19:35:33','2025-10-27 19:35:33',1); INSERT INTO locations_vlans (location_vlan_id,location_id,vlan_id,created_at,updated_at) VALUES (1,1,2,'2025-10-27 19:35:33','2025-10-27 19:35:33'); INSERT INTO subnets (subnet_id,cidr,netname,descr,created_at,updated_at,vlan_id,is_active) VALUES (1,'144.92.122.0/24','AAE-LAN','Agricultural and Applied Economics','2025-10-27 19:33:24','2025-10-27 19:33:24',2,1), Loading Loading
src/migrations/scripts/20251023141300_InitialDatabase.sql +0 −1 Original line number Diff line number Diff line Loading @@ -144,7 +144,6 @@ CREATE TABLE `locations_vlans` ( `location_vlan_id` bigint unsigned NOT NULL AUTO_INCREMENT, `location_id` bigint unsigned NOT NULL, `vlan_id` bigint unsigned NOT NULL, `is_active` tinyint unsigned NOT NULL DEFAULT (1), `created_at` datetime NOT NULL DEFAULT (utc_timestamp()), `updated_at` datetime NOT NULL DEFAULT (utc_timestamp()), PRIMARY KEY (`location_vlan_id`), Loading
src/migrations/scripts/20251027152500_InitialDataLoad.sql +2 −2 Original line number Diff line number Diff line Loading @@ -19,8 +19,8 @@ INSERT INTO vlans (vlan_id,name,descr,notes,created_at,updated_at,`number`,area_ INSERT INTO locations (location_id,name,descr,created_at,updated_at,notes) VALUES (1,'Taylor Hall','427 Lorch St.','2025-10-27 19:11:33','2025-10-27 19:11:33',NULL); INSERT INTO locations_vlans (location_vlan_id,location_id,vlan_id,created_at,updated_at,is_active) VALUES (1,1,2,'2025-10-27 19:35:33','2025-10-27 19:35:33',1); INSERT INTO locations_vlans (location_vlan_id,location_id,vlan_id,created_at,updated_at) VALUES (1,1,2,'2025-10-27 19:35:33','2025-10-27 19:35:33'); INSERT INTO subnets (subnet_id,cidr,netname,descr,created_at,updated_at,vlan_id,is_active) VALUES (1,'144.92.122.0/24','AAE-LAN','Agricultural and Applied Economics','2025-10-27 19:33:24','2025-10-27 19:33:24',2,1), Loading