feature: Adds protocol feidld.
This commit is contained in:
parent
0bb66098b7
commit
569016711a
7 changed files with 46 additions and 13 deletions
|
@ -0,0 +1,8 @@
|
|||
/*
|
||||
Warnings:
|
||||
|
||||
- Added the required column `protocol` to the `ForwardRule` table without a default value. This is not possible if the table is not empty.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "ForwardRule" ADD COLUMN "protocol" TEXT NOT NULL;
|
|
@ -24,6 +24,7 @@ model ForwardRule {
|
|||
|
||||
name String
|
||||
description String?
|
||||
protocol String
|
||||
sourceIP String
|
||||
sourcePort Int
|
||||
destPort Int
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue