forked from GNUsocial/gnu-social
[DATABASE] Add missing table names
This commit is contained in:
parent
8ca49ab511
commit
d14ac1edf6
@ -219,6 +219,7 @@ class Notice
|
|||||||
public static function schemaDef(): array
|
public static function schemaDef(): array
|
||||||
{
|
{
|
||||||
$def = [
|
$def = [
|
||||||
|
'name' => 'notice',
|
||||||
'fields' => [
|
'fields' => [
|
||||||
'id' => ['type' => 'serial', 'not null' => true, 'description' => 'unique identifier'],
|
'id' => ['type' => 'serial', 'not null' => true, 'description' => 'unique identifier'],
|
||||||
'profile_id' => ['type' => 'int', 'not null' => true, 'description' => 'who made the update'],
|
'profile_id' => ['type' => 'int', 'not null' => true, 'description' => 'who made the update'],
|
||||||
|
@ -186,6 +186,7 @@ class Profile
|
|||||||
public static function schemaDef(): array
|
public static function schemaDef(): array
|
||||||
{
|
{
|
||||||
$def = [
|
$def = [
|
||||||
|
'name' => 'profile',
|
||||||
'description' => 'local and remote users have profiles',
|
'description' => 'local and remote users have profiles',
|
||||||
'fields' => [
|
'fields' => [
|
||||||
'id' => ['type' => 'serial', 'not null' => true, 'description' => 'unique identifier'],
|
'id' => ['type' => 'serial', 'not null' => true, 'description' => 'unique identifier'],
|
||||||
|
@ -89,6 +89,7 @@ class Session
|
|||||||
public static function schemaDef(): array
|
public static function schemaDef(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
'name' => 'session',
|
||||||
'fields' => [
|
'fields' => [
|
||||||
'id' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'],
|
'id' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'],
|
||||||
'session_data' => ['type' => 'text', 'description' => 'session data'],
|
'session_data' => ['type' => 'text', 'description' => 'session data'],
|
||||||
|
Loading…
Reference in New Issue
Block a user