Skip to content

Commit afcad59

Browse files
committed
Some fixes and improvements
1 parent b6ca3f3 commit afcad59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

install.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
EOT
178178
,
179179
<<<'EOT'
180-
INSERT INTO `#DB_NAME#`.`w_config` (`uid`, `name`, `value`, `description`) VALUES(0, 'db_version', 26, 'DB schema version. Do not change!');
180+
INSERT INTO `#DB_NAME#`.`w_config` (`uid`, `name`, `value`, `description`) VALUES(0, 'db_version', 28, 'DB schema version. Do not change!');
181181
EOT
182182
,
183183
<<<'EOT'
@@ -1837,7 +1837,7 @@ function f_remove_self(id)
18371837
<div class="form-group">
18381838
<label for="awx_user" class="control-label col-sm-2">User:</label>
18391839
<div class="col-sm-5">
1840-
<input id="awx_user" name="awx_user" class="form-control" type="text" value="domain\user" />
1840+
<input id="awx_user" name="awx_user" class="form-control" type="text" value="user" placeholder="user" />
18411841
</div>
18421842
</div>
18431843
<div class="form-group">

upgrade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function db_upgrade($core, $version, $message, $query)
154154
db_upgrade($core, 25, 'Change `pid` column type in @runbooks_params', rpv('ALTER TABLE `@runbooks_params` MODIFY COLUMN `pid` int(10) UNSIGNED NOT NULL'));
155155
db_upgrade($core, 26, 'Add `extra_data_json` column to @runbooks_params', rpv('ALTER TABLE `@runbooks_params` ADD COLUMN `extra_data_json` VARCHAR(4096) NOT NULL DEFAULT \'\' AFTER `name`'));
156156
db_upgrade($core, 27, 'Extend `guid` column size in @runbooks_params', rpv('ALTER TABLE `@runbooks_params` MODIFY COLUMN `guid` varchar(64) NOT NULL'));
157-
db_upgrade($core, 28, 'Extend `guid` column size in @w_runbooks_jobs_params', rpv('ALTER TABLE `@w_runbooks_jobs_params` MODIFY COLUMN `guid` varchar(64) NOT NULL'));
157+
db_upgrade($core, 28, 'Extend `guid` column size in @runbooks_jobs_params', rpv('ALTER TABLE `@runbooks_jobs_params` MODIFY COLUMN `guid` varchar(64) NOT NULL'));
158158

159159
if(defined('ORCHESTRATOR_VERSION') && (ORCHESTRATOR_VERSION == 2022) && !defined('ORCHESTRATOR2022_URL'))
160160
{

0 commit comments

Comments
 (0)