mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6bfe8b5984
Summary: Ref T1191. - There was a varchar(50) column. I changed it to `text64`, since this length is unusual. - There was an int(3) column. I changed it to `int32`, since this length is unusual. Test Plan: Ran migrations, saw warnings disappear from config tool. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10524
2 lines
116 B
SQL
2 lines
116 B
SQL
ALTER TABLE {$NAMESPACE}_calendar.calendar_holiday
|
|
CHANGE name name VARCHAR(64) NOT NULL COLLATE utf8_general_ci;
|