pool/sql/2016-04-27-settings.sql
Tanguy Pruvot 7e0c9f69ce sql: settings table for exchange variables
only applied to bittrex as sample, default values are kept if unset.
2016-04-27 09:58:32 +02:00

10 lines
242 B
SQL

-- Recent additions to add after db init (.gz)
-- mysql yaamp -p < file.sql
CREATE TABLE `settings` (
`param` varchar(128) NOT NULL PRIMARY KEY,
`value` varchar(255) NULL,
`type` varchar(8) NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;