diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-05-22 13:37:30 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-05-22 13:37:30 +1000 |
commit | 3bb70d5de69f9b0546578ad57a38402f9da671f0 (patch) | |
tree | d5d0f4428ba89bbe190f027f4d0318fe7bbcc316 /src/wixext/FirewallTableDefinitions.cs | |
parent | cc083c765e8b7baa239c4d800a372cc729ada9d8 (diff) | |
parent | 5c851a848a6eeb86472e8a1cca814dd0cb1b0483 (diff) | |
download | wix-3bb70d5de69f9b0546578ad57a38402f9da671f0.tar.gz wix-3bb70d5de69f9b0546578ad57a38402f9da671f0.tar.bz2 wix-3bb70d5de69f9b0546578ad57a38402f9da671f0.zip |
Rebase pull request to close #1 from 'adnanshaheen-master'
Diffstat (limited to 'src/wixext/FirewallTableDefinitions.cs')
-rw-r--r-- | src/wixext/FirewallTableDefinitions.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wixext/FirewallTableDefinitions.cs b/src/wixext/FirewallTableDefinitions.cs index 4bae1ef0..068fe696 100644 --- a/src/wixext/FirewallTableDefinitions.cs +++ b/src/wixext/FirewallTableDefinitions.cs | |||
@@ -21,6 +21,7 @@ namespace WixToolset.Firewall | |||
21 | new ColumnDefinition("Profile", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Integer, minValue: 1, maxValue: 2147483647, description: "Profile (1=domain; 2=private; 4=public; 2147483647=all)."), | 21 | new ColumnDefinition("Profile", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Integer, minValue: 1, maxValue: 2147483647, description: "Profile (1=domain; 2=private; 4=public; 2147483647=all)."), |
22 | new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing component that controls the firewall configuration.", modularizeType: ColumnModularizeType.Column), | 22 | new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing component that controls the firewall configuration.", modularizeType: ColumnModularizeType.Column), |
23 | new ColumnDefinition("Description", ColumnType.String, 255, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "Description displayed in Windows Firewall manager for this firewall rule."), | 23 | new ColumnDefinition("Description", ColumnType.String, 255, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "Description displayed in Windows Firewall manager for this firewall rule."), |
24 | new ColumnDefinition("Direction", ColumnType.Number, 1, primaryKey: false, nullable: true, ColumnCategory.Integer, minValue: 1, maxValue: 2, description: "Direction (1=in; 2=out)"), | ||
24 | }, | 25 | }, |
25 | tupleIdIsPrimaryKey: true | 26 | tupleIdIsPrimaryKey: true |
26 | ); | 27 | ); |