Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2015-09-13 17:44:39 +0300
committerChaoyi Zha <summermontreal@gmail.com>2015-09-13 17:44:39 +0300
commitbbe274deb26fc75abd1f7e5eadecfbd39395c46f (patch)
tree1eb6f939edf16eae6794064d51bad630a1f1aa26
parent6bf524c01b4927439ed18ec09881dd54f8b977a3 (diff)
parent0f902dbba6e2ad328df8f6b545640d986f96d472 (diff)
Merge pull request #96 from mihawk90/theme-varchar
Extend `theme`columns varchar to 100 making room for more themes
-rw-r--r--setup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.php b/setup.php
index 47d0be1..6f1489d 100644
--- a/setup.php
+++ b/setup.php
@@ -190,7 +190,7 @@
`role` varchar(37) NOT NULL,
`valid` tinyint(1) NOT NULL DEFAULT "0",
`uid` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
- `theme` varchar(65) NOT NULL,
+ `theme` varchar(100) NOT NULL,
`ip` tinytext NOT NULL,
KEY `valid` (`valid`),
KEY `email` (`email`),
@@ -227,7 +227,7 @@
`user` tinytext NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`country` tinytext NOT NULL,
- `theme` varchar(65) NOT NULL,
+ `theme` varchar(100) NOT NULL,
`clicks` int(11) NOT NULL,
`pw` int(120) NOT NULL,
`etc` text,