2013-02-08 13:07:27 +01:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
|
2015-06-06 21:29:06 +02:00
|
|
|
Accountant is distributed in the hope that it will be useful,
|
2013-02-08 13:07:27 +01:00
|
|
|
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/>.
|
|
|
|
*/
|
2013-01-26 01:15:07 +01:00
|
|
|
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);
|
|
|
|
|