6 lines
160 B
MySQL
6 lines
160 B
MySQL
|
CREATE TABLE [activity_subscriptions] (
|
||
|
[user] int not null,
|
||
|
[targetID] int not null,
|
||
|
[targetType] nvarchar (50) not null,
|
||
|
[level] int DEFAULT 0 not null
|
||
|
);
|