Skip to content

Commit

Permalink
Add SQL scripts for plugins table.
Browse files Browse the repository at this point in the history
  • Loading branch information
racke committed Oct 24, 2010
1 parent beff8de commit 41559a4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions database/mysql/plugins.sql
@@ -0,0 +1,7 @@
CREATE TABLE plugins (
name varchar(32) not null default '',
label varchar(255) not null default '',
version varchar(16) not null default '',
active boolean,
PRIMARY KEY(name)
);
7 changes: 7 additions & 0 deletions database/pgsql/plugins.sql
@@ -0,0 +1,7 @@
CREATE TABLE plugins (
name varchar(32) not null default '',
label varchar(255) not null default '',
version varchar(16) not null default '',
active boolean,
PRIMARY KEY(name)
);

0 comments on commit 41559a4

Please sign in to comment.