Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
ff8c2c11
Commit
ff8c2c11
authored
Jul 30, 2002
by
bbaetz%student.usyd.edu.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 158236 - Remove 'watchfordiffs' column from namedqueries table
r=preed, jouni
parent
0a57310c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
checksetup.pl
checksetup.pl
+7
-13
No files found.
checksetup.pl
View file @
ff8c2c11
...
@@ -1504,22 +1504,10 @@ $table{profiles_activity} =
...
@@ -1504,22 +1504,10 @@ $table{profiles_activity} =
$table
{
namedqueries
}
=
$table
{
namedqueries
}
=
'userid mediumint not null,
'userid mediumint not null,
name varchar(64) not null,
name varchar(64) not null,
watchfordiffs tinyint not null,
linkinfooter tinyint not null,
linkinfooter tinyint not null,
query mediumtext not null,
query mediumtext not null,
unique(userid, name),
unique(userid, name)'
;
index(watchfordiffs)'
;
# This isn't quite cooked yet...
#
# $table{diffprefs} =
# 'userid mediumint not null,
# fieldid mediumint not null,
# mailhead tinyint not null,
# maildiffs tinyint not null,
#
# index(userid)';
$table
{
fielddefs
}
=
$table
{
fielddefs
}
=
'fieldid mediumint not null auto_increment primary key,
'fieldid mediumint not null auto_increment primary key,
...
@@ -3048,6 +3036,12 @@ if (-e 'data/comments.bak' && !$renamed_comments_file) {
...
@@ -3048,6 +3036,12 @@ if (-e 'data/comments.bak' && !$renamed_comments_file) {
used.\n\n"
;
used.\n\n"
;
}
}
# 2002-07-31 bbaetz@student.usyd.edu.au bug 158236
# Remove unused column
if
(
GetFieldDef
(
"namedqueries"
,
"watchfordiffs"
))
{
DropField
(
"namedqueries"
,
"watchfordiffs"
);
}
# If you had to change the --TABLE-- definition in any way, then add your
# If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment.
# differential change code *** A B O V E *** this comment.
#
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment