mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
09fb5667cc
Summary: Ref T5835. This is still completely made up (no payment integration), but you can "back" an initiative, type a number in the box, and generate a database row. You can then seach for backers and things you've backed and such. Notable changes: - Renamed "FundBacking" to "FundBacker". The former name was sort of because you can back things multiple times, but stuff like `$backings` was just too weird. - I think that's it? Test Plan: - Backed an initiative. - Viewed that I became a backer. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T5835 Differential Revision: https://secure.phabricator.com/D10486
19 lines
897 B
SQL
19 lines
897 B
SQL
CREATE TABLE {$NAMESPACE}_fund.fund_backertransaction (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
phid VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
authorPHID VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
objectPHID VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
viewPolicy VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
editPolicy VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
commentPHID VARCHAR(64) COLLATE utf8_bin DEFAULT NULL,
|
|
commentVersion INT UNSIGNED NOT NULL,
|
|
transactionType VARCHAR(32) COLLATE utf8_bin NOT NULL,
|
|
oldValue LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
newValue LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
contentSource LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
metadata LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL,
|
|
UNIQUE KEY `key_phid` (`phid`),
|
|
KEY `key_object` (`objectPHID`)
|
|
) ENGINE=InnoDB, COLLATE utf8_general_ci;
|