Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 297568 Details for
Bug 436921
Add foreign keys to dependencies table in DB schema.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
add FKs in dependencies table
patch.diff (text/plain), 1.05 KB, created by
Tony Fu
on 2008-03-11 06:37:33 UTC
(
hide
)
Description:
add FKs in dependencies table
Filename:
MIME Type:
Creator:
Tony Fu
Created:
2008-03-11 06:37:33 UTC
Size:
1.05 KB
patch
obsolete
>Index: Schema.pm >=================================================================== >RCS file: /cvsroot/mozilla/webtools/bugzilla/Bugzilla/DB/Schema.pm,v >retrieving revision 1.97 >diff -u -r1.97 Schema.pm >--- Schema.pm 9 Jan 2008 15:14:02 -0000 1.97 >+++ Schema.pm 11 Mar 2008 06:19:33 -0000 >@@ -343,8 +343,14 @@ > > dependencies => { > FIELDS => [ >- blocked => {TYPE => 'INT3', NOTNULL => 1}, >- dependson => {TYPE => 'INT3', NOTNULL => 1}, >+ blocked => {TYPE => 'INT3', NOTNULL => 1, >+ REFERENCES => {TABLE => 'bugs', >+ COLUMN => 'bug_id', >+ DELETE => 'CASCADE'}}, >+ dependson => {TYPE => 'INT3', NOTNULL => 1, >+ REFERENCES => {TABLE => 'bugs', >+ COLUMN => 'bug_id', >+ DELETE => 'CASCADE'}}, > ], > INDEXES => [ > dependencies_blocked_idx => ['blocked'],
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 436921
: 297568