Skip to content

Commit dbef566

Browse files
author
epriestley
committed
Update the quickstart.sql
Summary: Ref T1191. Use `storage quickstart` to regenerate `quickstart.sql` using modern schema construction statements. This puts new installs into utf8mb4 mode immediately without requiring storage adjustment. Test Plan: - Ran `arc unit --everything`, which uses quickstart. - Ran `bin/storage upgrade --namespace temp`, to quickstart a new namespace. - Ran `bin/storage upgrade --namespace temp --disable-utf8mb4`, to quickstart a new namespace without utf8mb4 support. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10797
1 parent 5372fb7 commit dbef566

File tree

4 files changed

+2528
-2049
lines changed

4 files changed

+2528
-2049
lines changed

.arclint

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
"text": {
6060
"type": "text",
6161
"exclude": [
62-
"(^\\.arclint)"
62+
"(^\\.arclint)",
63+
"(^resources/sql/quickstart.sql)"
6364
]
6465
},
6566
"text-without-length": {
@@ -68,7 +69,8 @@
6869
"3": "disabled"
6970
},
7071
"include": [
71-
"(^\\.arclint)"
72+
"(^\\.arclint)",
73+
"(^resources/sql/quickstart.sql)"
7274
]
7375
},
7476
"xhpast": {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE IF EXISTS {$NAMESPACE}_metamta.phid_type;

0 commit comments

Comments
 (0)