Skip to content

Commit

Permalink
Merge branch 'db_schema' of github.com:Sesquipedalian/SMF into db_schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jdarwood007 committed Mar 3, 2024
2 parents 5f27462 + 2418284 commit 76148b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions Languages/en_US/Maintenance.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
$txt['delete_tool'] = 'Click here to delete this {SCRIPT} file now.';
$txt['delete_tool_maybe'] = '<em>(does not work on all servers.)</em>';
$txt['error_message_click'] = 'Click here';
$txt['error_message_try_again'] = 'Click here to try again.';

// Errors and warnings.
$txt['critical_error'] = 'Critical Error!';
Expand All @@ -30,6 +31,10 @@
$txt['error_php_too_low'] = 'Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\\\'s minimum installations requirements.<br><br>Please ask your host to upgrade.';
$txt['error_dir_not_writable'] = 'The directory "{dir}" has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.';
$txt['error_unknown'] = 'Unknown Error!';
$txt['query_unsuccessful'] = 'Unsuccessful!';
$txt['query_failed'] = 'This query: {QUERY_STRING}
Caused the error: {QUERY_ERROR}';


// Progress bars and steps.
$txt['maintenance_progress'] = 'Progress';
Expand Down Expand Up @@ -470,13 +475,9 @@
$txt['upgrade_cleanup_completed'] = 'Cleanup has completed';
$txt['upgrade_current_step'] = 'Current Step';

$txt['upgrade_unsuccessful'] = 'Unsuccessful!';
$txt['upgrade_thisquery'] = 'This query:';
$txt['upgrade_causerror'] = 'Caused the error:';
$txt['upgrade_success'] = 'Successful!';
$txt['upgrade_loop'] = 'Upgrade script appears to be going into a loop - step: ';
$txt['upgrade_respondtime'] = 'Server has not responded for {0, number, integer} seconds. It may be worth waiting a little longer before trying again.';
$txt['upgrade_respondtime_clickhere'] = 'Click here to try again.';
$txt['mtitle'] = 'Upgrading the forum...';
$txt['mmessage'] = 'Don\'t worry, your forum will be updated shortly. It will only be a minute ;).';

Expand Down
2 changes: 1 addition & 1 deletion Sources/Db/Schema/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Column
public ?string $charset;

/**
* @var ?bool
* @var bool
*
* Set this to true to drop the default during an ALTER TABLE operation.
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/Db/Schema/Indices.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Indices
public array $columns = [];

/**
* @var bool
* @var ?string
*
* Allowed values: 'primary', 'unique', or null for a normal index.
*/
Expand Down

0 comments on commit 76148b7

Please sign in to comment.