pool/sql/2017-02-05-benchmarks.sql
Tanguy Pruvot 81a5552386 sql/benchs: add new columns to store the plimit and real freqs
also drop the mem amount column, unused and kinda useless...
2017-02-05 12:50:36 +01:00

10 lines
420 B
SQL

-- Recent additions to add after db init (.gz)
-- mysql yaamp -p < file.sql
-- don't forget to restart memcached service to refresh the db structure
ALTER TABLE `benchmarks` ADD `realfreq` INT(8) UNSIGNED NULL AFTER `freq`;
ALTER TABLE `benchmarks` ADD `realmemf` INT(8) UNSIGNED NULL AFTER `memf`;
ALTER TABLE `benchmarks` ADD `plimit` INT(5) UNSIGNED NULL AFTER `power`;
ALTER TABLE `benchmarks` DROP COLUMN `mem`;