Closed
Bug 722450
Opened 13 years ago
Closed 13 years ago
adding custom fields to bmo
Categories
(Data & BI Services Team :: DB: MySQL, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: scabral, Assigned: scabral)
Details
We got these e-mails:
The custom field 'cf_tracking_esr10' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_tracking_esr10` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_tracking_esr10) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_status_esr10' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_status_esr10` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_status_esr10) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_tracking_firefox13' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_tracking_firefox13` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_tracking_firefox13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_status_firefox13' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_status_firefox13` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_status_firefox13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_tracking_thunderbird13' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_tracking_thunderbird13` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_tracking_thunderbird13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_status_thunderbird13' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_status_thunderbird13` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_status_thunderbird13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_tracking_seamonkey210' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_tracking_seamonkey210` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_tracking_seamonkey210) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
The custom field 'cf_status_seamonkey210' has been added to the BMO database.
Please run the following on tm-bugs01-master01:
GRANT SELECT ON `bugs`.`cf_status_seamonkey210` TO 'metrics'@'10.2.70.20_';
GRANT SELECT (cf_status_seamonkey210) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
| Assignee | ||
Comment 1•13 years ago
|
||
GRANT statements have been issued, resolving:
mysql> use bugs;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> show variables like 'hostname';
+---------------+--------------------+
| Variable_name | Value |
+---------------+--------------------+
| hostname | tm-bugs01-master01 |
+---------------+--------------------+
1 row in set (0.00 sec)
mysql> use bugs;
Database changed
mysql> GRANT SELECT ON `bugs`.`cf_tracking_esr10` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT SELECT (cf_tracking_esr10) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.01 sec)
mysql> GRANT SELECT ON `bugs`.`cf_status_esr10` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.01 sec)
mysql> GRANT SELECT (cf_status_esr10) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> GRANT SELECT ON `bugs`.`cf_tracking_firefox13` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT SELECT (cf_tracking_firefox13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT SELECT ON `bugs`.`cf_status_firefox13` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT SELECT (cf_status_firefox13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> GRANT SELECT ON `bugs`.`cf_tracking_thunderbird13` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.01 sec)
mysql> GRANT SELECT (cf_tracking_thunderbird13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> GRANT SELECT ON `bugs`.`cf_status_thunderbird13` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT SELECT (cf_status_thunderbird13) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.01 sec)
mysql>
mysql> GRANT SELECT ON `bugs`.`cf_tracking_seamonkey210` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT SELECT (cf_tracking_seamonkey210) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> GRANT SELECT ON `bugs`.`cf_status_seamonkey210` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.01 sec)
mysql> GRANT SELECT (cf_status_seamonkey210) ON `bugs`.`bugs` TO 'metrics'@'10.2.70.20_';
Query OK, 0 rows affected (0.00 sec)
mysql>
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: mozilla.org → Data & BI Services Team
You need to log in
before you can comment on or make changes to this bug.
Description
•