diff options
Diffstat (limited to 'src/test/Example.Extension/ExampleTableDefinitions.cs')
-rw-r--r-- | src/test/Example.Extension/ExampleTableDefinitions.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/Example.Extension/ExampleTableDefinitions.cs b/src/test/Example.Extension/ExampleTableDefinitions.cs index 3532ffc3..f204e5b6 100644 --- a/src/test/Example.Extension/ExampleTableDefinitions.cs +++ b/src/test/Example.Extension/ExampleTableDefinitions.cs | |||
@@ -8,17 +8,18 @@ namespace Example.Extension | |||
8 | { | 8 | { |
9 | public static readonly TableDefinition ExampleTable = new TableDefinition( | 9 | public static readonly TableDefinition ExampleTable = new TableDefinition( |
10 | "Wix4Example", | 10 | "Wix4Example", |
11 | ExampleTupleDefinitions.Example, | ||
11 | new[] | 12 | new[] |
12 | { | 13 | { |
13 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | 14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), |
14 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), | 15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), |
15 | }, | 16 | }, |
16 | tupleDefinitionName: ExampleTupleDefinitions.Example.Name, | ||
17 | tupleIdIsPrimaryKey: true | 17 | tupleIdIsPrimaryKey: true |
18 | ); | 18 | ); |
19 | 19 | ||
20 | public static readonly TableDefinition NotInAll = new TableDefinition( | 20 | public static readonly TableDefinition NotInAll = new TableDefinition( |
21 | "TableDefinitionNotExposedByExtension", | 21 | "TableDefinitionNotExposedByExtension", |
22 | null, | ||
22 | new[] | 23 | new[] |
23 | { | 24 | { |
24 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | 25 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), |