Release commit for 1.62
[dbsrgits/SQL-Translator.git] / t / 49xml-to-pg-samefield.t
index 4fb029d..2b4a8f8 100644 (file)
@@ -33,14 +33,12 @@ my $sql = $sqlt->translate(
 ) or die $sqlt->error;
 
 is($sql, << "SQL");
-DROP TABLE "one";
+DROP TABLE "one" CASCADE;
 CREATE TABLE "one" (
   "same" character varying(100) DEFAULT 'hello' NOT NULL
 );
 
-
-
-DROP TABLE "two";
+DROP TABLE "two" CASCADE;
 CREATE TABLE "two" (
   "same" character varying(100) DEFAULT 'hello' NOT NULL
 );