Fix inflection bug for "ss" words (like address)

* Adjust inflect rules
* Bump version to 2.1.8
This commit is contained in:
Patrick O'brien 2017-01-24 13:31:43 +10:00
parent 761efee9f0
commit e992e327c2
3 changed files with 26 additions and 1 deletions

View file

@ -306,6 +306,17 @@ create table worms (
foreign key (tiger_id) references tigers (id)
);
create table addresses (
id bytea primary key,
name bytea null
);
create table houses (
id bytea primary key,
name bytea not null,
address_id bytea not null unique,
foreign key (address_id) references addresses (id)
);
create table byte_pilots (
id bytea primary key not null,