@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Schema Patch to Add a New Table

Summary: Added 20130214.chatlogchannel.sql in resources/sql/patches to add a new table

Test Plan: Hmmmmm .......

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4952

authored by

Afaque Hussain and committed by
epriestley
9baada15 dea1a958

+16
+12
resources/sql/patches/20130214.chatlogchannel.sql
··· 1 + 2 + CREATE TABLE {$NAMESPACE}_chatlog.chatlog_channel ( 3 + id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, 4 + serviceName VARCHAR(64) COLLATE utf8_bin NOT NULL, 5 + serviceType VARCHAR(32) COLLATE utf8_bin NOT NULL, 6 + channelName VARCHAR(64) COLLATE utf8_bin NOT NULL, 7 + viewPolicy VARCHAR(64) COLLATE utf8_bin NOT NULL, 8 + editPolicy VARCHAR(64) COLLATE utf8_bin NOT NULL, 9 + dateCreated INT UNSIGNED NOT NULL, 10 + dateModified INT UNSIGNED NOT NULL, 11 + UNIQUE KEY `key_channel` (channelName, serviceType, serviceName) 12 + )ENGINE=InnoDB DEFAULT CHARSET=utf8;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1109 1109 'type' => 'sql', 1110 1110 'name' => $this->getPatchPath('20130131.conpherencepics.sql'), 1111 1111 ), 1112 + '20130214.chatlogchannel.sql' => array( 1113 + 'type' => 'sql', 1114 + 'name' => $this->getPatchPath('20130214.chatlogchannel.sql'), 1115 + ), 1112 1116 ); 1113 1117 } 1114 1118