1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
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);