summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2014-05-28 17:04:37 +0200
committerDylan William Hardison <dylan@hardison.net>2014-05-28 17:04:37 +0200
commit7ea36c899372e8e113935ff036e992a819d786b6 (patch)
tree5a5e09763995a8c783ee98cefe8a5edb1e5eee26 /Bugzilla/DB
parentb6b83df873a1509797235738e00f9e6307eca876 (diff)
downloadbugzilla-7ea36c899372e8e113935ff036e992a819d786b6.tar.gz
bugzilla-7ea36c899372e8e113935ff036e992a819d786b6.tar.xz
Revert previous commit to re-apply with the schema change in a separate commit.
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm19
1 files changed, 0 insertions, 19 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index cbcb5b26c..d8f3e175a 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -1714,25 +1714,6 @@ use constant ABSTRACT_SCHEMA => {
],
},
- bug_user_last_visit => {
- FIELDS => [
- id => {TYPE => 'INTSERIAL', NOTNULL => 1,
- PRIMARYKEY => 1},
- user_id => {TYPE => 'INT3', NOTNULL => 1,
- REFERENCES => {TABLE => 'profiles',
- COLUMN => 'userid',
- DELETE => 'CASCADE'}},
- bug_id => {TYPE => 'INT3', NOTNULL => 1,
- REFERENCES => {TABLE => 'bugs',
- COLUMN => 'bug_id',
- DELETE => 'CASCADE'}},
- last_visit_ts => {TYPE => 'DATETIME', NOTNULL => 1},
- ],
- INDEXES => [
- bug_user_last_visit_idx => {FIELDS => ['user_id', 'bug_id'],
- TYPE => 'UNIQUE'}
- ],
- },
};
# Foreign Keys are added in Bugzilla::DB::bz_add_field_tables