diff options
Diffstat (limited to 'src/test/Example.Extension/ExampleTableDefinitions.cs')
| -rw-r--r-- | src/test/Example.Extension/ExampleTableDefinitions.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/Example.Extension/ExampleTableDefinitions.cs b/src/test/Example.Extension/ExampleTableDefinitions.cs index 124e2406..3532ffc3 100644 --- a/src/test/Example.Extension/ExampleTableDefinitions.cs +++ b/src/test/Example.Extension/ExampleTableDefinitions.cs | |||
| @@ -17,6 +17,16 @@ namespace Example.Extension | |||
| 17 | tupleIdIsPrimaryKey: true | 17 | tupleIdIsPrimaryKey: true |
| 18 | ); | 18 | ); |
| 19 | 19 | ||
| 20 | public static readonly TableDefinition NotInAll = new TableDefinition( | ||
| 21 | "TableDefinitionNotExposedByExtension", | ||
| 22 | new[] | ||
| 23 | { | ||
| 24 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | ||
| 25 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), | ||
| 26 | }, | ||
| 27 | tupleIdIsPrimaryKey: true | ||
| 28 | ); | ||
| 29 | |||
| 20 | public static readonly TableDefinition[] All = new[] { ExampleTable }; | 30 | public static readonly TableDefinition[] All = new[] { ExampleTable }; |
| 21 | } | 31 | } |
| 22 | } | 32 | } |
