fix
This commit is contained in:
parent
585ad096a3
commit
cc9b89bf20
1 changed files with 2 additions and 2 deletions
|
|
@ -11,13 +11,13 @@
|
|||
<comment>ALTER TABLE</comment>
|
||||
<sql>
|
||||
ALTER TABLE IF EXISTS admin_indicators.user_analysis
|
||||
ADD COLUMN count_responsible_zi bigint NOT NULL DEFAULT 0;
|
||||
ADD COLUMN IF NOT EXISTS count_responsible_zi bigint NOT NULL DEFAULT 0;
|
||||
COMMENT ON COLUMN admin_indicators.user_analysis.count_responsible_zi
|
||||
IS 'Ответственный за ЗИ';
|
||||
|
||||
|
||||
ALTER TABLE IF EXISTS admin_indicators.user_analysis
|
||||
ADD COLUMN count_responsible_zi_svk bigint NOT NULL DEFAULT 0;
|
||||
ADD COLUMN IF NOT EXISTS count_responsible_zi_svk bigint NOT NULL DEFAULT 0;
|
||||
COMMENT ON COLUMN admin_indicators.user_analysis.count_responsible_zi_svk
|
||||
IS 'Ответственный за ЗИ СВК';
|
||||
</sql>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue