diff options
Diffstat (limited to 'libdbpp/unittests/commentsMixedIn.sql')
-rw-r--r-- | libdbpp/unittests/commentsMixedIn.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libdbpp/unittests/commentsMixedIn.sql b/libdbpp/unittests/commentsMixedIn.sql new file mode 100644 index 0000000..1766309 --- /dev/null +++ b/libdbpp/unittests/commentsMixedIn.sql @@ -0,0 +1,7 @@ +CREATE TABLE foo(/* + Foo contains test things + */ + id int, -- Every table deserves an Id, right? + timestamp time stamp -- And a timestamp + ); + |