1044518e74
Throw an error instead of updating a word filter that doesn't exist. Track a bit of extra data for word filter updates. Shorten the prefixes of the adminlog phrases from panel_logs_administration_ to panel_logs_admin_ Add a bunch of new adminlog phrases. Tweak the word filter phrases. Add the extra column to the moderation_logs and administration_logs tables. You need to run the updater / patcher for this commit.
9 lines
262 B
SQL
9 lines
262 B
SQL
CREATE TABLE [moderation_logs] (
|
|
[action] nvarchar (100) not null,
|
|
[elementID] int not null,
|
|
[elementType] nvarchar (100) not null,
|
|
[ipaddress] nvarchar (200) not null,
|
|
[actorID] int not null,
|
|
[doneAt] datetime not null,
|
|
[extra] nvarchar (MAX) not null
|
|
); |