First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / examples / Schema / db / example.sql
diff --git a/t/examples/Schema/db/example.sql b/t/examples/Schema/db/example.sql
deleted file mode 100644 (file)
index 13d9b39..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-CREATE TABLE artist (
-  artistid INTEGER PRIMARY KEY,
-  name TEXT NOT NULL 
-);
-
-CREATE TABLE cd (
-  cdid INTEGER PRIMARY KEY,
-  artist INTEGER NOT NULL REFERENCES artist(artistid),
-  title TEXT NOT NULL
-);
-
-CREATE TABLE track (
-  trackid INTEGER PRIMARY KEY,
-  cd INTEGER NOT NULL REFERENCES cd(cdid),
-  title TEXT NOT NULL
-);
\ No newline at end of file