gosora/schema/mysql/query_activity_stream_matches.sql
Azareal 78fbbcda21 Optimise template generator.
Optimise mysql adapter.
Add TokenScope to mysql adapter.
Add SimpleBulkInsert() to installer.
Optimise panel.Plugins() route.
2021-04-30 08:33:02 +10:00

5 lines
165 B
SQL

CREATE TABLE `activity_stream_matches`(
`watcher` int not null,
`asid` int not null,
foreign key(`asid`) REFERENCES `activity_stream`(`asid`) ON DELETE CASCADE
);