From d62a5e0cb267a05ebf8c5a645fe49a4a574c80b0 Mon Sep 17 00:00:00 2001
From: Andrew Dolgov <noreply@fakecake.org>
Date: Wed, 17 Jun 2015 19:42:41 +0300
Subject: [PATCH] bayes: fix psql schema typo

---
 plugins/af_sort_bayes/init.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/af_sort_bayes/init.php b/plugins/af_sort_bayes/init.php
index e2c81d63..bf8a1e59 100644
--- a/plugins/af_sort_bayes/init.php
+++ b/plugins/af_sort_bayes/init.php
@@ -170,7 +170,7 @@ class Af_Sort_Bayes extends Plugin {
 			$this->dbh->query("CREATE TABLE IF NOT EXISTS ${prefix}_categories (
 				id SERIAL NOT NULL PRIMARY KEY,
 				category varchar(100) NOT NULL DEFAULT '',
-				probability DOUBLE NOT NULL DEFAULT '0',
+				probability DOUBLE PRECISION NOT NULL DEFAULT '0',
 				owner_uid INTEGER NOT NULL REFERENCES ttrss_users(id) ON DELETE CASCADE,
 				word_count BIGINT NOT NULL DEFAULT '0')");
 
-- 
2.39.5