Skip to content

Commit

Permalink
Speichern ohne Case Sensitive wieder ermöglichen
Browse files Browse the repository at this point in the history
Fix #35
  • Loading branch information
TobiasKrais authored Nov 15, 2022
1 parent c5b6ce7 commit cede9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
->ensureColumn(new rex_sql_column('createdate', 'datetime'))
->ensureColumn(new rex_sql_column('updatedate', 'datetime'))
->ensureColumn(new rex_sql_column('revision', 'int(10) unsigned'))
->ensureColumn(new rex_sql_column('casesensitive', 'varchar(255)'))
->ensureColumn(new rex_sql_column('casesensitive', 'varchar(255)', true))
->setPrimaryKey('pid')
->ensure();
// Cache
Expand Down

0 comments on commit cede9f7

Please sign in to comment.