mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
11 lines
539 B
SQL
11 lines
539 B
SQL
ALTER TABLE `quest_template`
|
|
CHANGE `Title` `Title` text,
|
|
CHANGE `Details` `Details` text,
|
|
CHANGE `Objectives` `Objectives` text,
|
|
CHANGE `CompletionText` `CompletionText` text,
|
|
CHANGE `IncompleteText` `IncompleteText` text,
|
|
CHANGE `EndText` `EndText` text,
|
|
CHANGE `ObjectiveText1` `ObjectiveText1` text,
|
|
CHANGE `ObjectiveText2` `ObjectiveText2` text,
|
|
CHANGE `ObjectiveText3` `ObjectiveText3` text,
|
|
CHANGE `ObjectiveText4` `ObjectiveText4` text;
|