added field - version

This commit is contained in:
Pavel 2024-09-18 18:22:39 +03:00
parent 8eca5622aa
commit 1fbc78c357
3 changed files with 3 additions and 0 deletions

@ -0,0 +1 @@
ALTER TABLE answer DROP COLUMN IF EXISTS version;

@ -0,0 +1 @@
ALTER TABLE answer ADD COLUMN version integer NOT NULL default 0;

@ -131,6 +131,7 @@ type Answer struct {
OS string
Start bool
Utm UTMSavingMap
Version int
}
type ResultContent struct {