3.5.0 release

This commit is contained in:
UlricQin 2021-01-22 11:29:49 +08:00
parent 1f88b72dba
commit 2e9b236406
3 changed files with 8 additions and 7 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
# release version
version=3.4.1
version=3.5.0
CWD=$(cd $(dirname $0)/; pwd)
cd $CWD

View File

@ -1,7 +1 @@
set names utf8;
use n9e_mon;
alter table collect_rule change `last_updator` `updater` varchar(64) NOT NULL DEFAULT '' COMMENT 'updater';
alter table collect_rule add `created_at` bigint NOT NULL DEFAULT 0;
alter table collect_rule add `updated_at` bigint NOT NULL DEFAULT 0;

View File

@ -0,0 +1,7 @@
set names utf8;
use n9e_mon;
alter table collect_rule change `last_updator` `updater` varchar(64) NOT NULL DEFAULT '' COMMENT 'updater';
alter table collect_rule add `created_at` bigint NOT NULL DEFAULT 0;
alter table collect_rule add `updated_at` bigint NOT NULL DEFAULT 0;