Repository: incubator-fineract Updated Branches: refs/heads/develop da9601483 -> f6fb56b94
adding License Header in V312__add_is_mandatory_to_code_value.sql Project: http://git-wip-us.apache.org/repos/asf/incubator-fineract/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-fineract/commit/f6fb56b9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-fineract/tree/f6fb56b9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-fineract/diff/f6fb56b9 Branch: refs/heads/develop Commit: f6fb56b9404d5489ca8d60e2da891e234330148e Parents: da96014 Author: Nazeer Hussain Shaik <[email protected]> Authored: Mon Aug 1 11:24:01 2016 +0530 Committer: Nazeer Hussain Shaik <[email protected]> Committed: Mon Aug 1 11:24:01 2016 +0530 ---------------------------------------------------------------------- .../V312__add_is_mandatory_to_code_value.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-fineract/blob/f6fb56b9/fineract-provider/src/main/resources/sql/migrations/core_db/V312__add_is_mandatory_to_code_value.sql ---------------------------------------------------------------------- diff --git a/fineract-provider/src/main/resources/sql/migrations/core_db/V312__add_is_mandatory_to_code_value.sql b/fineract-provider/src/main/resources/sql/migrations/core_db/V312__add_is_mandatory_to_code_value.sql index 21a992d..ec1ff5a 100644 --- a/fineract-provider/src/main/resources/sql/migrations/core_db/V312__add_is_mandatory_to_code_value.sql +++ b/fineract-provider/src/main/resources/sql/migrations/core_db/V312__add_is_mandatory_to_code_value.sql @@ -1 +1,20 @@ +-- +-- 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. +-- + alter table `m_code_value` add `is_mandatory` tinyint(1) not null default '0';
