brmbar-cli: Add support for adduser action

This commit is contained in:
Petr Baudis 2013-02-10 17:41:25 +01:00
parent bacb9b1791
commit 13bc4d6f60
2 changed files with 8 additions and 0 deletions

View file

@ -4,6 +4,7 @@ CREATE TABLE currencies (
name VARCHAR(128) NOT NULL,
UNIQUE(name)
);
-- Some code depends on the primary physical currency to have id 1.
INSERT INTO currencies (name) VALUES ('Kč');
CREATE TYPE exchange_rate_direction AS ENUM ('source_to_target', 'target_to_source');