release: 1.2.0-beta.3.

pull/471/head^2 v1.2.0-beta.3
ruibaby 2019-12-23 17:39:16 +08:00
parent 308aefacca
commit 90757f6555
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ apply plugin: 'io.spring.dependency-management'
group = 'run.halo.app'
archivesBaseName = 'halo'
version = '1.2.0-beta.2'
version = '1.2.0-beta.3'
sourceCompatibility = '1.8'
description = 'Halo, personal blog system developed in Java.'

View File

@ -2,5 +2,5 @@
-- Migrate journals Table
alter table journals modify content text not null;
alter table journals add source_content varchar(1023) default '' not null;
update journals set `source_content`=`content`