Skip to content

Commit

Permalink
#28 Make GDN_sph_stats.keywords_full nullable (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenston authored Apr 15, 2020
1 parent 1a4e5c0 commit f0e3aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class.sphinxsearch.plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ public function Setup() {
->Column('id', 'int(11)', FALSE) //order matters here!
->Column('mode', 'int(11)', FALSE)
->Column('keywords', 'varchar(255)', FALSE, 'index')
->Column('keywords_full', 'varchar(255)', FALSE)
->Column('keywords_full', 'varchar(255)', TRUE)
->Column('date_added', 'datetime', FALSE)
->PrimaryKey('id', 'int')
->Set();
Expand Down

0 comments on commit f0e3aa7

Please sign in to comment.