5 lines
137 B
MySQL
5 lines
137 B
MySQL
|
DROP TABLE IF EXISTS [activity_stream_matches];
|
||
|
CREATE TABLE [activity_stream_matches] (
|
||
|
[watcher] int not null,
|
||
|
[asid] int not null
|
||
|
);
|