Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 32236 Details for
Bug 52321
Sqlite cache backend for portage
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
sql
portage-sqlite-init-db.sql (text/plain), 584 bytes, created by
Karol Wojtaszek (RETIRED)
on 2004-05-29 00:23:24 UTC
(
hide
)
Description:
sql
Filename:
MIME Type:
Creator:
Karol Wojtaszek (RETIRED)
Created:
2004-05-29 00:23:24 UTC
Size:
584 bytes
patch
obsolete
>CREATE TABLE path_table ( > name varchar(255) NOT NULL UNIQUE, > p_id INTEGER PRIMARY KEY >); > >CREATE TABLE category_table ( > name varchar(255) NOT NULL UNIQUE, > c_id INTEGER PRIMARY KEY >); > >CREATE TABLE package_name ( > name varchar(255) NOT NULL, > cat_id int NOT NULL, > path_id int NOT NULL, > > data text, > > FOREIGN KEY (cat_id) > REFERENCES category_table (c_id) > ON DELETE CASCADE, > > FOREIGN KEY (path_id) > REFERENCES path_table (p_id) > ON DELETE CASCADE, > > primary key (name, cat_id, path_id) > >); > >CREATE INDEX p_index ON package_name (name, cat_id, path_id);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 52321
:
32234
|
32235
| 32236 |
32237