Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Wiedermann committed Dec 22, 2015
2 parents cab4c25 + cad4956 commit b65d769
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sql/create-tables-and-views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ CREATE TABLE IF NOT EXISTS fi_config_params (
ALTER TABLE fi_config_params ADD UNIQUE fi_config_params_unique_knz(mandant_id, param_knz);

INSERT INTO fi_config_params (mandant_id, param_knz, param_desc, param_value) values
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1');
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1'),
(1, 'op_schliessen_txt', 'Buchungsvorl. OP schliessen', 'Aufl. OP #op_nr# - #op_btxt#');

--
-- Struktur des Views `fi_buchungen_view`
Expand Down
3 changes: 2 additions & 1 deletion sql/create_table_fi_config_params.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ CREATE TABLE IF NOT EXISTS fi_config_params (
ALTER TABLE fi_config_params ADD UNIQUE fi_config_params_unique_knz(mandant_id, param_knz);

INSERT INTO fi_config_params (mandant_id, param_knz, param_desc, param_value) values
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1');
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1'),
(1, 'op_schliessen_txt', 'Buchungsvorl. OP schliessen', 'Aufl. OP #op_nr# - #op_btxt#');

0 comments on commit b65d769

Please sign in to comment.