diff options
Diffstat (limited to 'src/test/Example.Extension/ExampleTableDefinitions.cs')
-rw-r--r-- | src/test/Example.Extension/ExampleTableDefinitions.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/Example.Extension/ExampleTableDefinitions.cs b/src/test/Example.Extension/ExampleTableDefinitions.cs index 4901cc09..a2b81698 100644 --- a/src/test/Example.Extension/ExampleTableDefinitions.cs +++ b/src/test/Example.Extension/ExampleTableDefinitions.cs | |||
@@ -8,14 +8,14 @@ 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 | ExampleSymbolDefinitions.Example, |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | 14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), |
15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), | 15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), |
16 | }, | 16 | }, |
17 | strongRowType: typeof(ExampleRow), | 17 | strongRowType: typeof(ExampleRow), |
18 | tupleIdIsPrimaryKey: true | 18 | symbolIdIsPrimaryKey: true |
19 | ); | 19 | ); |
20 | 20 | ||
21 | public static readonly TableDefinition NotInAll = new TableDefinition( | 21 | public static readonly TableDefinition NotInAll = new TableDefinition( |
@@ -26,7 +26,7 @@ namespace Example.Extension | |||
26 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | 26 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), |
27 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), | 27 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), |
28 | }, | 28 | }, |
29 | tupleIdIsPrimaryKey: true | 29 | symbolIdIsPrimaryKey: true |
30 | ); | 30 | ); |
31 | 31 | ||
32 | public static readonly TableDefinition[] All = new[] { ExampleTable }; | 32 | public static readonly TableDefinition[] All = new[] { ExampleTable }; |