ceph/teuthology/locker/config.py
Sandon Van Ness 7b1eec94f1 Use longer varchar for locked_by in DB.
Signed-off-by: Sandon Van Ness <sandon@inktank.com>
2014-05-06 12:06:56 -07:00

26 lines
744 B
Python

"""
This file contains database configuration.
The schema can be created with::
CREATE TABLE machine (
name varchar(255),
type enum('burnupi','plana','vps') NOT NULL DEFAULT 'plana',
up boolean NOT NULL,
locked boolean NOT NULL,
locked_since timestamp NOT NULL DEFAULT '0000-00-00T00:00:00',
locked_by varchar(64),
description text,
sshpubkey text NOT NULL,
PRIMARY KEY (name),
INDEX (locked),
INDEX (up));
If using MySQL, be sure to use an engine that supports
transactions, like InnoDB.
"""
import web
# Change these values to the connection info for your database.
DB = web.database(dbn='dbms', db='db', user='user', pw='password', host='host')