mirror of
https://github.com/php/web-pecl.git
synced 2026-03-24 07:12:15 +01:00
7 lines
211 B
SQL
7 lines
211 B
SQL
CREATE TABLE provides (
|
|
release INTEGER REFERENCES releases(id),
|
|
type ENUM('ext','prog','class','function','feature') NOT NULL,
|
|
name VARCHAR(200),
|
|
INDEX(release)
|
|
);
|