mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
sql: new coin db fields multialgos watch stake
This commit is contained in:
parent
f61d53bc67
commit
a7bae2ddc7
1 changed files with 9 additions and 0 deletions
9
sql/2016-05-11-coins.sql
Normal file
9
sql/2016-05-11-coins.sql
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
-- 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 `coins` ADD `watch` TINYINT(1) NOT NULL DEFAULT '0' AFTER `installed`;
|
||||||
|
ALTER TABLE `coins` ADD `multialgos` TINYINT(1) NOT NULL DEFAULT '0' AFTER `auxpow`;
|
||||||
|
ALTER TABLE `coins` ADD `stake` DOUBLE NULL AFTER `balance`;
|
||||||
|
|
Loading…
Add table
Reference in a new issue