f10fdcb40c
Added the meta store. Added the panel_menu_statistics_active_memory phrase. Added the panel_statistics_active_memory_head phrase. Added the panel_analytics_time_range_month template. Added Go 1.12 to the Travis list. Added the stack and heap columns to the memchunks table. Added the createdAt column to the activity_stream table. Added the meta table. You will need to run the patcher / updater for this commit.
10 lines
262 B
SQL
10 lines
262 B
SQL
CREATE TABLE "activity_stream" (
|
|
`asid` serial not null,
|
|
`actor` int not null,
|
|
`targetUser` int not null,
|
|
`event` varchar (50) not null,
|
|
`elementType` varchar (50) not null,
|
|
`elementID` int not null,
|
|
`createdAt` timestamp not null,
|
|
primary key(`asid`)
|
|
); |