add timestamp column to prepaid_costs table

remotes/svn/2.7
Richard Fuchs 14 years ago
parent b60a5410f6
commit f57d33b1c2

@ -0,0 +1,2 @@
use accounting;
alter table prepaid_costs drop column timestamp;

@ -0,0 +1,5 @@
use accounting;
alter table prepaid_costs add column timestamp timestamp not null;
update prepaid_costs set timestamp = now();
alter table prepaid_costs add key (timestamp);
Loading…
Cancel
Save