tormon/db.sql

15 lines
259 B
MySQL
Raw Normal View History

2016-08-25 22:36:27 +02:00
create table users (
id integer primary key,
2016-08-25 22:36:27 +02:00
email text not null,
confirmed integer not null,
fp text not null,
2016-09-15 22:34:59 +02:00
secret text,
/*
status
0 - everything is fine
1 - the relay was down
2 - the relay has gone!
*/
status integer not null
2016-08-25 22:36:27 +02:00
);