blob: 7bccdc82fe1b0315818385c3626110f778726177 [file] [log] [blame]
--
-- 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.
--
/* table contains details of loans that have had overpayments aka payments in advance */
CREATE TABLE `m_loan_paid_in_advance` (
`loan_id` BIGINT NOT NULL,
`principal_in_advance_derived` decimal(19,6) NOT NULL DEFAULT '0.000000',
`interest_in_advance_derived` decimal(19,6) NOT NULL DEFAULT '0.000000',
`fee_charges_in_advance_derived` decimal(19,6) NOT NULL DEFAULT '0.000000',
`penalty_charges_in_advance_derived` decimal(19,6) NOT NULL DEFAULT '0.000000',
`total_in_advance_derived` decimal(19,6) NOT NULL DEFAULT '0.000000',
PRIMARY KEY (`loan_id`),
CONSTRAINT `m_loan_paid_in_advance_ibfk_1` FOREIGN KEY (`loan_id`) REFERENCES `m_loan` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;