at/dbsetup.sql

7 lines
132 B
MySQL
Raw Permalink Normal View History

2012-01-26 18:58:09 +00:00
create table devices (
hwaddr character(17) primary key,
name varchar(50),
2012-09-14 23:38:30 +00:00
owner varchar(100) not null,
2012-01-26 18:58:09 +00:00
ignored boolean
);