Add categories and set v1.2.2.
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>org.codiki</groupId>
|
||||
<artifactId>codiki</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<version>1.2.2</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>codiki</name>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
app:
|
||||
name: Codiki
|
||||
description: A wiki application.
|
||||
version: 1.2.1
|
||||
version: 1.2.2
|
||||
platform: develop
|
||||
|
||||
codiki:
|
||||
|
||||
12
src/main/sql/update_1.2.2.sql
Normal file
12
src/main/sql/update_1.2.2.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
INSERT INTO category (name, creator_id) VALUES
|
||||
('Windows', 1),
|
||||
('Outillage', 1);
|
||||
|
||||
INSERT INTO sub_category VALUES
|
||||
(12, 2),
|
||||
(13, 4);
|
||||
|
||||
INSERT INTO version (number) VALUES ('1.2.2');
|
||||
|
||||
INSERT INTO version_revision (version_id, text, bugfix) VALUES
|
||||
(6, 'Ajout des catégories "Windows" et "Outillage".', FALSE);
|
||||
@@ -1,5 +1,5 @@
|
||||
export const environment = {
|
||||
production: false,
|
||||
appVersion: '1.2.1',
|
||||
appVersion: '1.2.2',
|
||||
title: 'Intégration'
|
||||
};
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
appVersion: '1.2.1',
|
||||
appVersion: '1.2.2',
|
||||
title: ''
|
||||
};
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
export const environment = {
|
||||
production: false,
|
||||
appVersion: '1.2.1',
|
||||
appVersion: '1.2.2',
|
||||
title: 'Développement'
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user