mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Avoid foreign key problem
This commit is contained in:
parent
1e9d3342a3
commit
4c78ac3ce2
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `gserver` (
|
|||
--
|
||||
CREATE TABLE IF NOT EXISTS `user` (
|
||||
`uid` mediumint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
|
||||
`parent-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'The parent user that has full control about this user',
|
||||
`parent-uid` mediumint unsigned NOT NULL COMMENT 'The parent user that has full control about this user',
|
||||
`guid` varchar(64) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this user',
|
||||
`username` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this user is known by',
|
||||
`password` varchar(255) NOT NULL DEFAULT '' COMMENT 'encrypted password',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue