Drop model table if exists

This commit is contained in:
Thomas Chevalier 2022-06-22 16:17:13 +02:00
parent 7e79817e6f
commit b290e7e52b

View file

@ -38,7 +38,8 @@ CREATE TABLE IF NOT EXISTS ct_logs (
-- Table used to build the argument list passed by ulog
-- It contains the flow_{start, end}_{sec, usec} variables
-- instead of the timestamps
CREATE TABLE IF NOT EXISTS ulog2_ct_model (
DROP TABLE IF EXISTS ulog2_ct_model;
CREATE TABLE ulog2_ct_model (
ct_id bigint PRIMARY KEY UNIQUE NOT NULL,
oob_family smallint default NULL,
orig_ip_saddr_str inet default NULL,