summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsql/Pg-tables.sql8
1 files changed, 7 insertions, 1 deletions
diff --git a/sql/Pg-tables.sql b/sql/Pg-tables.sql
index 022b40ed..32dffb9a 100755
--- a/sql/Pg-tables.sql
+++ b/sql/Pg-tables.sql
@@ -254,7 +254,7 @@ CREATE TABLE tax (
taxnumber text,
validto date,
pass integer DEFAULT 0 NOT NULL,
- taxmodule_id int,
+ taxmodule_id int DEFAULT 1 NOT NULL,
FOREIGN KEY (chart_id) REFERENCES chart (id),
FOREIGN KEY (taxmodule_id) REFERENCES taxmodule (taxmodule_id)
);
@@ -706,3 +706,9 @@ table_id INT REFERENCES custom_table_catalog,
field_name TEXT
);
INSERT INTO defaults (version) VALUES ('2.6.18');
+
+INSERT INTO taxmodule (
+ taxmodule_id, taxmodulename
+ ) VALUES (
+ 1, 'Simple'
+);