Commit 4f62d66b authored by Eric Dieckman's avatar Eric Dieckman
Browse files

Remove updated_at in location_vlans

parent bc6aad86
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -145,7 +145,6 @@ CREATE TABLE `locations_vlans` (
  `location_id` bigint unsigned NOT NULL,
  `vlan_id` bigint unsigned NOT NULL,
  `created_at` datetime NOT NULL DEFAULT (utc_timestamp()),
  `updated_at` datetime NOT NULL DEFAULT (utc_timestamp()),
  PRIMARY KEY (`location_vlan_id`),
  KEY `locations_vlans_locations_FK` (`location_id`),
  KEY `locations_vlans_vlans_FK` (`vlan_id`),
+2 −2
Original line number Diff line number Diff line
@@ -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) VALUES
	 (1,1,2,'2025-10-27 19:35:33','2025-10-27 19:35:33');
INSERT INTO locations_vlans (location_vlan_id,location_id,vlan_id,created_at) VALUES
	 (1,1,2,'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),