diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-05-25 13:20:10 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-05-25 13:20:10 -0700 |
commit | d8ad555b9ad7d70f6733f3d1e2ef795c752f45a4 (patch) | |
tree | 04e0f4de0d095b3a8ea790772645a467e84419b0 /controller/schema.sql | |
parent | d29f2ce858297efa8b350439002541d14402f21f (diff) | |
download | infinitytier-d8ad555b9ad7d70f6733f3d1e2ef795c752f45a4.tar.gz infinitytier-d8ad555b9ad7d70f6733f3d1e2ef795c752f45a4.zip |
Go ahead and add flags and invFlags to the Rule table.
Diffstat (limited to 'controller/schema.sql')
-rw-r--r-- | controller/schema.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/controller/schema.sql b/controller/schema.sql index 8d93a4dc..b5646ee9 100644 --- a/controller/schema.sql +++ b/controller/schema.sql @@ -96,6 +96,8 @@ CREATE TABLE Rule ( ipProtocol integer, ipSourcePort integer, ipDestPort integer, + flags integer, + invFlags integer, "action" varchar(4096) NOT NULL DEFAULT('accept') ); |