mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
e40c002a6d
Summary: This adds a very very basic view count to Phame, so bloggers can get some idea which posts are more popular than others. Anything more than this I think should be Facts or Google Analytics. Test Plan: Write a new post, see post count. Reload page, post count goes up. Archive post, post count stays the same. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18446
2 lines
72 B
SQL
2 lines
72 B
SQL
ALTER TABLE {$NAMESPACE}_phame.phame_post
|
|
ADD views INTEGER NOT NULL;
|