diff --git a/libreplan-business/src/main/resources/db.changelog-1.4.1.xml b/libreplan-business/src/main/resources/db.changelog-1.4.1.xml
new file mode 100644
index 000000000..0d3ac2124
--- /dev/null
+++ b/libreplan-business/src/main/resources/db.changelog-1.4.1.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+ ALTER TABLE limits ADD tmp_id BIGINT;
+ UPDATE limits SET tmp_id = id;
+ ALTER TABLE limits DROP CONSTRAINT limits_pkey;
+ ALTER TABLE limits DROP COLUMN id;
+ ALTER TABLE limits RENAME COLUMN tmp_id TO id;
+
+
+
+
+
+
+ UPDATE limits SET value = 0;
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libreplan-business/src/main/resources/db.changelog-1.4.xml b/libreplan-business/src/main/resources/db.changelog-1.4.xml
index 160694554..a92cccb40 100644
--- a/libreplan-business/src/main/resources/db.changelog-1.4.xml
+++ b/libreplan-business/src/main/resources/db.changelog-1.4.xml
@@ -2,7 +2,7 @@
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
Add column to criterion table to store the relationship with cost category
@@ -24,7 +24,12 @@
-
+
+
@@ -42,7 +47,7 @@
-
+
@@ -52,15 +57,15 @@
- INSERT INTO limits VALUES(1, 'users', 0);
- INSERT INTO limits VALUES(2, 'workers+machines', 0);
+ INSERT INTO limits VALUES(0, 'users', 5);
+ INSERT INTO limits VALUES(1, 'workers+machines', 10);
diff --git a/libreplan-business/src/main/resources/db.changelog.xml b/libreplan-business/src/main/resources/db.changelog.xml
index 99bc85a99..54ff3a809 100644
--- a/libreplan-business/src/main/resources/db.changelog.xml
+++ b/libreplan-business/src/main/resources/db.changelog.xml
@@ -11,6 +11,7 @@
+