mirror of
https://github.com/friendica/friendica
synced 2025-04-27 03:10:12 +00:00
Use "int"
This commit is contained in:
parent
e673da536c
commit
adc49724dd
2 changed files with 4 additions and 4 deletions
|
@ -661,7 +661,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
|
||||
`causer-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
|
||||
`icid` int unsigned COMMENT 'Id of the item-content table entry that contains the whole item content',
|
||||
`vid` tinyint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
|
||||
`vid` int unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
|
||||
`extid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
|
||||
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||
|
@ -1430,7 +1430,7 @@ CREATE TABLE IF NOT EXISTS `user-item` (
|
|||
-- TABLE verb
|
||||
--
|
||||
CREATE TABLE IF NOT EXISTS `verb` (
|
||||
`id` tinyint unsigned NOT NULL auto_increment,
|
||||
`id` int unsigned NOT NULL auto_increment,
|
||||
`name` varchar(100) NOT NULL DEFAULT '' COMMENT '',
|
||||
PRIMARY KEY(`id`)
|
||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activity Verbs';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue