Phame V1 - Phabricator blogging software
Summary: 'cuz we need to be phamous! V1 feature set - posts -- standard thing you'd expect - a title and a remarkup-powered body and... -- "phame" title - a short string that can be used to reference the story. this gets auto-updated when you mess with the title. -- configuration - for now, do you want Facebook, Disqus or no comments? this is a per-post thing but feeds from an instance-wide configuration Please do toss out any must have features or changes. Test Plan: played around with this bad boy like whoa Reviewers: epriestley Reviewed By: epriestley CC: aran, vrana Maniphest Tasks: T1111 Differential Revision: https://secure.phabricator.com/D2202
This commit is contained in:
18
resources/sql/patches/132.phame.sql
Normal file
18
resources/sql/patches/132.phame.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
CREATE DATABASE IF NOT EXISTS `phabricator_phame` COLLATE utf8_general_ci;
|
||||
|
||||
CREATE TABLE `phabricator_phame`.`phame_post` (
|
||||
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
`phid` VARCHAR(64) BINARY NOT NULL COLLATE utf8_bin,
|
||||
`bloggerPHID` VARCHAR(64) BINARY NOT NULL COLLATE utf8_bin,
|
||||
`title` VARCHAR(255) NOT NULL,
|
||||
`phameTitle` VARCHAR(64) NOT NULL,
|
||||
`body` LONGTEXT COLLATE utf8_general_ci,
|
||||
`visibility` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`configData` LONGTEXT COLLATE utf8_general_ci,
|
||||
`datePublished` INT UNSIGNED NOT NULL,
|
||||
`dateCreated` INT UNSIGNED NOT NULL,
|
||||
`dateModified` INT UNSIGNED NOT NULL,
|
||||
KEY `bloggerPosts` (`bloggerPHID`, `visibility`, `datePublished`, `id`),
|
||||
UNIQUE KEY `phid` (`phid`),
|
||||
UNIQUE KEY `phameTitle` (`bloggerPHID`, `phameTitle`)
|
||||
) ENGINE=InnoDB;
|
||||
Reference in New Issue
Block a user