Page MenuHomeWickedGov Phorge

tables.json
No OneTemporary

Size
993 B
Referenced Files
None
Subscribers
None

tables.json

[
{
"name": "actor",
"comment": "The \"actor\" table associates user names or IP addresses with integers for the benefit of other tables that need to refer to either logged-in or logged-out users. If something can only ever be done by logged-in users, it can refer to the user table directly.",
"columns": [
{
"name": "actor_id",
"comment": "Unique ID to identify each actor",
"type": "bigint",
"options": {
"unsigned": true,
"notnull": true
}
},
{
"name": "actor_user",
"comment": "Key to user.user_id, or NULL for anonymous edits",
"type": "integer",
"options": {
"unsigned": true
}
},
{
"name": "actor_name",
"comment": "Text username or IP address",
"type": "string",
"options": {
"length": 255,
"notnull": true
}
}
],
"indexes": [
{
"name": "actor_user",
"columns": [
"actor_user"
],
"unique": true
},
{
"name": "actor_name",
"columns": [
"actor_name"
],
"unique": true
}
],
"pk": [
"actor_id"
]
}
]

File Metadata

Mime Type
application/json
Expires
Fri, Jul 3, 18:14 (1 d, 11 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
c7/a6/c55694b5e51582dc810db3938d2b
Default Alt Text
tables.json (993 B)

Event Timeline