* Correct postgis geography type insertion and linebreak fix for multiple geometry/geography columns
* made PostgreSQL producer consistent with other producers in terms of
quoting and allowing functions in constraints and indices
+* Add distinction of autoinc and regular primary keys to the GraphViz producer
# ----------------------------------------------------------
# 0.11007 2010-11-30
my $constraints;
if ($args->{show_constraints}) {
my @constraints;
- push(@constraints, 'PK') if $field->is_primary_key;
+ push(@constraints, $field->is_auto_increment ? 'PA' : 'PK') if $field->is_primary_key;
push(@constraints, 'FK') if $field->is_foreign_key;
push(@constraints, 'U') if $field->is_unique;
push(@constraints, 'N') if $field->is_nullable;