Skip to content

Commit

Permalink
Update installer
Browse files Browse the repository at this point in the history
  • Loading branch information
idoalit committed Jun 24, 2021
1 parent 5c813af commit f36838e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions install/install.sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
`file_dir` text collate utf8_unicode_ci,
`mime_type` varchar(100) collate utf8_unicode_ci default NULL,
`file_desc` text collate utf8_unicode_ci,
`file_key` text collate utf8_unicode_ci,
`uploader_id` int(11) NOT NULL,
`input_date` datetime NOT NULL,
`last_update` datetime NOT NULL,
Expand Down
2 changes: 2 additions & 0 deletions install/sections/SelectVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export default {
{value: 26, text: 'SLiMS 9.3.0 | Bulian'},
{value: 27, text: 'SLiMS 9.3.1 | Bulian'},
{value: 28, text: 'SLiMS 9.4.0 | Bulian'},
{value: 29, text: 'SLiMS 9.4.1 | Bulian'},
{value: 30, text: 'SLiMS 9.4.2 | Bulian'},
]
}
},
Expand Down
1 change: 1 addition & 0 deletions install/senayan.sql
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ CREATE TABLE IF NOT EXISTS `files` (
`file_dir` text collate utf8_unicode_ci,
`mime_type` varchar(100) collate utf8_unicode_ci default NULL,
`file_desc` text collate utf8_unicode_ci,
`file_key` text collate utf8_unicode_ci,
`uploader_id` int(11) NOT NULL,
`input_date` datetime NOT NULL,
`last_update` datetime NOT NULL,
Expand Down
6 changes: 6 additions & 0 deletions install/tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,12 @@
'null' => true,
'default' => null
],
[
'field' => 'file_key',
'type' => 'text',
'null' => true,
'default' => null
],
[
'field' => 'uploader_id',
'type' => 'int(11)',
Expand Down

0 comments on commit f36838e

Please sign in to comment.