From 3629ebebe9cb606b00d93b040c9c01363a3081ad Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 1 Oct 2014 12:43:20 -0700 Subject: [PATCH] Drop very old schema_version table if it exists Summary: Ref T1191. This predates the mdoern patch stuff and may exist on very, very old installs. By the time they apply this patch, it's guaranteed it won't matter anymore. Drop it to make the schemata consistent with expectations. Test Plan: Ran patch on installs with and without the table. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10611 --- resources/sql/autopatches/20141001.schema.01.version.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 resources/sql/autopatches/20141001.schema.01.version.sql diff --git a/resources/sql/autopatches/20141001.schema.01.version.sql b/resources/sql/autopatches/20141001.schema.01.version.sql new file mode 100644 index 0000000000..2eef5f1f4d --- /dev/null +++ b/resources/sql/autopatches/20141001.schema.01.version.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS {$NAMESPACE}_meta_data.schema_version;