> * @since 1.0.0 */ protected static $columns = [ 'country_id' => ['name' => 'country_id', 'type' => 'int', 'internal' => 'id'], 'country_name' => ['name' => 'country_name', 'type' => 'string', 'internal' => 'name'], 'country_code2' => ['name' => 'country_code2', 'type' => 'string', 'internal' => 'code2'], 'country_code3' => ['name' => 'country_code3', 'type' => 'string', 'internal' => 'code3'], 'country_numeric' => ['name' => 'country_numeric', 'type' => 'int', 'internal' => 'numeric'], 'country_subdevision' => ['name' => 'country_subdevision', 'type' => 'string', 'internal' => 'subdevision'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ protected static $table = 'country'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static $primaryField = 'country_id'; }