Skip to content

Commit

Permalink
add export_to_ixf DB definitions to models
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhilliard committed Mar 18, 2024
1 parent f5d3d41 commit 28fa382
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data/ci/ci_test_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2762,6 +2762,7 @@ CREATE TABLE `vlan` (
`notes` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci,
`peering_matrix` tinyint(1) NOT NULL DEFAULT '0',
`peering_manager` tinyint(1) NOT NULL DEFAULT '0',
`export_to_ixf` tinyint(1) NOT NULL DEFAULT '1',
`config_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
Expand All @@ -2778,7 +2779,7 @@ CREATE TABLE `vlan` (

LOCK TABLES `vlan` WRITE;
/*!40000 ALTER TABLE `vlan` DISABLE KEYS */;
INSERT INTO `vlan` VALUES (1,1,'Peering LAN 1',1,0,'',1,1,NULL,NULL,NULL),(2,2,'Peering LAN 2',2,0,'',1,1,NULL,NULL,NULL);
INSERT INTO `vlan` VALUES (1,1,'Peering LAN 1',1,0,'',1,1,1,NULL,NULL,NULL),(2,2,'Peering LAN 2',2,0,'',1,1,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `vlan` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down
1 change: 1 addition & 0 deletions database/IXP-Manager.ormdesigner2
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,7 @@
<field name="private" type="boolean" default="0" required="true" uuid="0dab2335-8f1b-446e-a53e-b669a132cf09"/>
<field name="peering_matrix" type="boolean" default="0" required="true" uuid="c2635dd8-8b82-420d-b0c4-a688b52cfc39"/>
<field name="peering_manager" type="boolean" default="0" required="true" uuid="8ccb17e4-b4f3-4a01-91e1-a639a49b6445"/>
<field name="export_to_ixf" type="boolean" default="1" required="true" uuid="1f8586ba-e565-11ee-acd3-af3830c624fb"/>
<field name="notes" type="text" uuid="6f0d5a85-0441-4611-97a7-af2596fab0d0"/>
<index name="infra_config_name" unique="true" uuid="a4fa1226-ee20-42e1-97b1-c39c333d6f4a">
<index-field name="infrastructureid" uuid="9f772490-9248-4288-95b0-78b9d77b7d35"/>
Expand Down

0 comments on commit 28fa382

Please sign in to comment.