'Varchar(100)', 'Locale' => 'Varchar(10)', 'URLSegment' => 'Varchar(100)', 'IsGlobalDefault' => 'Boolean', ]; private static $has_many = [ 'FallbackLocales' => FallbackLocale::class . '.Parent', ]; private static $many_many = [ 'Fallbacks' => [ 'through' => FallbackLocale::class, 'from' => 'Parent', 'to' => 'Locale', ], ]; private static $default_sort = '"ManyManyThroughTest_Locale"."Locale" ASC'; }