licensed under the AGPLv1
[yourule] / ruler_gallery_db.sql
1 DROP TABLE IF EXISTS gallery;
2 CREATE TABLE gallery (
3   id integer not null auto_increment,
4   pixel_width float not null,
5   unit_width float not null,
6   units VARCHAR(100) not null,
7   model VARCHAR(255) not null,
8   visible tinyint not null default 1,
9   primary key (id)
10 );
11
12

Benjamin Mako Hill || Want to submit a patch?