gosora/schema/pgsql/query_moderation_logs.sql
Azareal 0305571cb3 Eliminated some JS errors for guests on Cosora.
Fixed the build tags for the alt database engines.
Tweaked the quotes on the PgSQL adapter. Still not functional.
Removed the SQLite build tag as it's unlikely that it'll ever be implemented.
2018-08-15 17:02:57 +10:00

8 lines
226 B
SQL

CREATE TABLE "moderation_logs" (
`action` varchar (100) not null,
`elementID` int not null,
`elementType` varchar (100) not null,
`ipaddress` varchar (200) not null,
`actorID` int not null,
`doneAt` timestamp not null
);