49 ->configurePrimary(
true)
50 ->configureAutocomplete(
true),
55 ->configureRequired(
true)
58 new Fields\
FloatField(
'LATITUDE', [
'scale' => 6]),
59 new Fields\
FloatField(
'LONGITUDE', [
'scale' => 6]),
61 (
new Fields\Relations\
OneToMany(
'FIELDS', AddressFieldTable::class,
'ADDRESS'))
62 ->configureJoinType(
'left'),
64 (
new Fields\Relations\
OneToMany(
'LINKS', AddressLinkTable::class,
'ADDRESS'))
65 ->configureJoinType(
'left'),
67 (
new Fields\Relations\
Reference(
'LOCATION', LocationTable::class,
68 Join::on(
'this.LOCATION_ID',
'ref.ID')))
69 ->configureJoinType(
'left')