Combined patches from RT#70734 and RT#44769
[dbsrgits/SQL-Translator.git] / t / data / sqlite / named.sql
index 7e93878..fdc1f98 100644 (file)
@@ -1,7 +1,7 @@
 create table pet (
   "pet_id" int,
   "person_id" int
-    constraint fk_person_id references person(person_id),
+    constraint fk_person_id references person(person_id) on update CASCADE on delete RESTRICT,
   "name" varchar(30),
   "age" int,
   constraint age_under_100 check ( age < 100 ),