Rename sort_by_equivalent column to sort_by_definition

This commit is contained in:
Robbie Antenesse 2018-01-12 09:23:23 -07:00
parent 2a79c800f0
commit 7e7ffb8525
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `dictionaries` (
`description` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'Markdown',
`allow_duplicates` tinyint(1) NOT NULL DEFAULT '0',
`case_sensitive` tinyint(1) NOT NULL DEFAULT '0',
`sort_by_equivalent` tinyint(1) NOT NULL DEFAULT '0',
`sort_by_definition` tinyint(1) NOT NULL DEFAULT '0',
`is_complete` tinyint(1) NOT NULL DEFAULT '0',
`is_public` tinyint(1) NOT NULL DEFAULT '0',
`last_updated` timestamp NULL DEFAULT NULL,