LuckyCoinkydink/sql/db_update_0.8-alpha1_0.8-alpha2_mysql.sql
2006-08-02 10:07:34 +00:00

9 lines
262 B
SQL

create table {PREFIX}entryproperties (
entryid int(11) not null,
property varchar(255) not null,
value text
);
CREATE UNIQUE INDEX prop_idx ON {PREFIX}entryproperties (entryid, property);
CREATE INDEX entrypropid_idx ON {PREFIX}entryproperties (entryid);