Skip to content

Commit

Permalink
gh-554: fix V2023_2_0_0.sql db patch
Browse files Browse the repository at this point in the history
  • Loading branch information
vananiev committed Jul 15, 2023
1 parent 89a66c3 commit 4a2cac4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/main/resources/db/migration/h2/V2023_2_0_0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* InvestBook
* Copyright (C) 2023 Spacious Team <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

ALTER TABLE `event_cash_flow`
ALTER COLUMN `value` DECIMAL(12,6) NOT NULL COMMENT 'Размер';

ALTER TABLE `security_event_cash_flow`
ALTER COLUMN `value` DECIMAL(12,6) NOT NULL COMMENT 'Размер';

ALTER TABLE `transaction_cash_flow`
ALTER COLUMN `value` DECIMAL(12,6) NOT NULL COMMENT 'Размер';

0 comments on commit 4a2cac4

Please sign in to comment.