diff options
Diffstat (limited to 'verify/tags.sql')
-rw-r--r-- | verify/tags.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/verify/tags.sql b/verify/tags.sql new file mode 100644 index 0000000..5d6b174 --- /dev/null +++ b/verify/tags.sql @@ -0,0 +1,11 @@ +-- Verify diary:tags on pg + +BEGIN; + +SET search_path to diary; + +SELECT id, name, created_at, updated_at + FROM tags + WHERE FALSE; + +ROLLBACK; |