This is an automated email from the ASF dual-hosted git repository. aleks pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/fineract.git
commit 92279a771e569ec667da721f8fb73268dc0f45f5 Author: rrpawar96 <[email protected]> AuthorDate: Tue Feb 9 16:24:33 2021 +0530 added-stretchy-reports SQL (FINERACT-1306) --- .../core_db/V155_1__add_stretchy_reports.sql | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/fineract-provider/src/main/resources/sql/migrations/core_db/V155_1__add_stretchy_reports.sql b/fineract-provider/src/main/resources/sql/migrations/core_db/V155_1__add_stretchy_reports.sql new file mode 100644 index 0000000..70ffd5d --- /dev/null +++ b/fineract-provider/src/main/resources/sql/migrations/core_db/V155_1__add_stretchy_reports.sql @@ -0,0 +1,22 @@ +-- +-- Licensed to the Apache Software Foundation (ASF) under one +-- or more contributor license agreements. See the NOTICE file +-- distributed with this work for additional information +-- regarding copyright ownership. The ASF licenses this file +-- to you under the Apache License, Version 2.0 (the +-- "License"); you may not use this file except in compliance +-- with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, +-- software distributed under the License is distributed on an +-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +-- KIND, either express or implied. See the License for the +-- specific language governing permissions and limitations +-- under the License. +-- + +-- two tables added: ReportCategoryList and FullReportList (FINERACT-1306) +INSERT INTO stretchy_report (report_name, report_type, report_category, report_sql, description, core_report, use_report)VALUES ("ReportCategoryList", 'Table', '(NULL)', '(NULL)', '(NULL)', 1, 1); +INSERT INTO stretchy_report (report_name, report_type, report_category, report_sql, description, core_report, use_report)VALUES ("FullReportList", 'Table', '(NULL)', '(NULL)', '(NULL)', 1, 1);
