fixed alter_drop_constraint for foreign keys and applying multiple changes via alter_...
[dbsrgits/SQL-Translator.git] / t / 30sqlt-new-diff-pgsql.t
index 83acc2e..eb39f01 100644 (file)
@@ -45,6 +45,7 @@ my $out = SQL::Translator::Diff::schema_diff(
      }
    }
 );
+
 eq_or_diff($out, <<'## END OF DIFF', "Diff as expected");
 -- Convert schema 'create1.yml' to 'create2.yml':;
 
@@ -56,7 +57,7 @@ CREATE TABLE added (
 
 ALTER TABLE old_name RENAME TO new_name;
 
-ALTER TABLE employee DROP CONSTRAINT FK5302D47D93FE702E;
+ALTER TABLE employee DROP CONSTRAINT employee_employee_id_fkey;
 
 ALTER TABLE person DROP CONSTRAINT UC_age_name;