aboutsummaryrefslogtreecommitdiffstats
path: root/install/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-07 22:47:03 -0800
committerfriendica <info@friendica.com>2014-02-07 22:47:03 -0800
commit8c845f5d506e333ecd8eaed3139bcd7e344ef346 (patch)
tree15b5621f252a4fc9737eeb0d6deec16dcb3d58d4 /install/database.sql
parentae6bd7dc1e87805447e765e08d7a31ae5ac03f32 (diff)
downloadvolse-hubzilla-8c845f5d506e333ecd8eaed3139bcd7e344ef346.tar.gz
volse-hubzilla-8c845f5d506e333ecd8eaed3139bcd7e344ef346.tar.bz2
volse-hubzilla-8c845f5d506e333ecd8eaed3139bcd7e344ef346.zip
set default for account_level in DB
Diffstat (limited to 'install/database.sql')
-rw-r--r--install/database.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql
index 86531a415..cd31a0285 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS `account` (
`account_expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`account_expire_notified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`account_service_class` char(32) NOT NULL DEFAULT '',
- `account_level` int(10) unsigned NOT NULL,
+ `account_level` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`account_id`),
KEY `account_email` (`account_email`),
KEY `account_service_class` (`account_service_class`),