Closed
Bug 1178868
Opened 9 years ago
Closed 9 years ago
Drop the old south_migrationhistory table
Categories
(Tree Management :: Treeherder: Infrastructure, defect, P3)
Tree Management
Treeherder: Infrastructure
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: emorley, Assigned: emorley)
References
(Blocks 1 open bug)
Details
`treeherder`.`south_migrationhistory`
Unused after the update to Django 1.7 iirc.
Assignee | ||
Comment 1•9 years ago
|
||
Stage...
mysql> SELECT table_schema, table_name FROM information_schema.tables WHERE table_name = 'south_migrationhistory';
+------------------+------------------------+
| table_schema | table_name |
+------------------+------------------------+
| treeherder_stage | south_migrationhistory |
+------------------+------------------------+
1 row in set (0.08 sec)
mysql> DROP TABLE treeherder_stage.south_migrationhistory;
Query OK, 0 rows affected (0.10 sec)
mysql> SELECT table_schema, table_name FROM information_schema.tables WHERE table_name = 'south_migrationhistory';
Empty set (0.00 sec)
Prod...
mysql> SELECT table_schema, table_name FROM information_schema.tables WHERE table_name = 'south_migrationhistory';
+--------------+------------------------+
| table_schema | table_name |
+--------------+------------------------+
| treeherder | south_migrationhistory |
+--------------+------------------------+
1 row in set (0.03 sec)
mysql> DROP TABLE treeherder.south_migrationhistory;
Query OK, 0 rows affected (0.12 sec)
mysql> SELECT table_schema, table_name FROM information_schema.tables WHERE table_name = 'south_migrationhistory';
Empty set (0.01 sec)
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•