Fix inflection bug for "ss" words (like address)
* Adjust inflect rules * Bump version to 2.1.8
This commit is contained in:
parent
761efee9f0
commit
e992e327c2
3 changed files with 26 additions and 1 deletions
testdata
11
testdata/postgres_test_schema.sql
vendored
11
testdata/postgres_test_schema.sql
vendored
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue