27 lines
1006 B
SQL
27 lines
1006 B
SQL
/*
|
|
This file is part of Accountant.
|
|
|
|
Accountant 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.
|
|
|
|
Accountant 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 Accountant. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
ALTER TABLE entry ADD COLUMN pointed BOOLEAN NOT NULL DEFAULT false;
|
|
|
|
UPDATE entry SET pointed = operation_date IS NOT NULL;
|
|
|
|
UPDATE entry SET operation_date = value_date;
|
|
|
|
ALTER TABLE entry DROP COLUMN value_date;
|
|
|
|
CREATE INDEX entry_operation_date_idx ON entry USING btree (operation_date);
|
|
|