blob: aa3b58ca17ccfe455aa97d2a972487e14cc28f7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!/usr/bin/perl -w
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
use strict;
use Cwd 'abs_path';
use File::Basename;
use FindBin;
use lib "$FindBin::Bin/../..";
use lib "$FindBin::Bin/../../lib";
use Bugzilla;
use Bugzilla::Constants;
sub usage() {
print <<USAGE;
Usage: convert_date_time_date.pl <column>
E.g.: convert_date_time_date.pl cf_due_date
Converts a datetime field (FIELD_TYPE_DATETIME) to a date field type
(FIELD_TYPE_DATE).
Note: Any time portion will be lost but the date portion will be preserved.
USAGE
}
#############################################################################
# MAIN CODE
#############################################################################
Bugzilla->usage_mode(USAGE_MODE_CMDLINE);
if (scalar @ARGV < 1) {
usage();
exit();
}
my $column = shift;
print <<EOF;
Converting bugs.${column} from FIELD_TYPE_DATETIME to FIELD_TYPE_DATE.
Note: Any time portion will be lost but the date portion will be preserved.
Press <Ctrl-C> to stop or <Enter> to continue...
EOF
getc();
Bugzilla->dbh->bz_alter_column('bugs', $column, { TYPE => 'DATE' });
Bugzilla->dbh->do("UPDATE fielddefs SET type = ? WHERE name = ?",
undef, FIELD_TYPE_DATE, $column);
print "\ndone.\n";
|