diff options
author | Rob Austein <sra@hactrn.net> | 2014-02-01 00:14:32 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-02-01 00:14:32 +0000 |
commit | 6b136bf5c8d948cb34bb4e42764a591a9d19b140 (patch) | |
tree | 90f5404788abaa5a35aa07a4a0ea82355c2da352 /rpkid/rpki | |
parent | c08aa24ba903a7b161133eb7766f4f404a2356da (diff) |
Oops, smoketest.py depends on the DROP TABLE IF EXISTS statements in rpkid.sql.
svn path=/branches/tk671/; revision=5660
Diffstat (limited to 'rpkid/rpki')
-rw-r--r-- | rpkid/rpki/sql_schemas.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpkid/rpki/sql_schemas.py b/rpkid/rpki/sql_schemas.py index a6d54d9d..106237bf 100644 --- a/rpkid/rpki/sql_schemas.py +++ b/rpkid/rpki/sql_schemas.py @@ -2,7 +2,7 @@ ## @var rpkid ## SQL schema rpkid -rpkid = '''-- $Id: rpkid.sql 3745 2011-03-27 00:21:57Z sra $ +rpkid = '''-- $Id: rpkid.sql 5659 2014-02-01 00:11:21Z sra $ -- Copyright (C) 2009--2011 Internet Systems Consortium ("ISC") -- @@ -37,6 +37,7 @@ rpkid = '''-- $Id: rpkid.sql 3745 2011-03-27 00:21:57Z sra $ -- DROP TABLE commands must be in correct (reverse dependency) order -- to satisfy FOREIGN KEY constraints. +DROP TABLE IF EXISTS ee_cert; DROP TABLE IF EXISTS ghostbuster; DROP TABLE IF EXISTS roa_prefix; DROP TABLE IF EXISTS roa; |