Method
shouldHaveColumn
(prop: EntityProperty<T>, populate: PopulateOptions<T>[], exclude?: string[])
Source from the content-addressed store, hash-verified
| 108 | } |
| 109 | |
| 110 | override shouldHaveColumn<T>(prop: EntityProperty<T>, populate: PopulateOptions<T>[], exclude?: string[]): boolean { |
| 111 | if (super.shouldHaveColumn(prop, populate, exclude)) { |
| 112 | return true; |
| 113 | } |
| 114 | |
| 115 | return prop.kind === ReferenceKind.MANY_TO_MANY && prop.owner; |
| 116 | } |
| 117 | |
| 118 | override validateMetadata(meta: EntityMetadata): void { |
| 119 | super.validateMetadata(meta); |
Tested by
no test coverage detected