SQL: Added a column for pinned posts

This commit is contained in:
Ilya Prokopenko 2021-11-15 17:27:18 +07:00
parent 85208a5c8e
commit 22c592c075
No known key found for this signature in database
GPG key ID: 7736BBBB05F14A56

View file

@ -0,0 +1 @@
ALTER TABLE `posts` ADD `pinned` BOOLEAN NOT NULL DEFAULT FALSE AFTER `ad`, ADD INDEX (`pinned`);