Difference between revisions of "Database Table: dw payments"
From Dreamwidth Notes
Line 1: | Line 1: | ||
+ | Designed for DW Payment system but never used. Removed in [http://hg.dwscoalition.org/dw-free/rev/446f75a17f85 changeset 446f75a17f85] | ||
+ | |||
= Definition = | = Definition = | ||
Revision as of 18:43, 23 August 2009
Designed for DW Payment system but never used. Removed in changeset 446f75a17f85
Definition
CREATE TABLE dw_payments ( paymentid INT UNSIGNED NOT NULL AUTO_INCREMENT, paydate INT UNSIGNED NOT NULL, pp_token VARCHAR(20) NOT NULL, from_userid INT UNSIGNED, target_userid INT UNSIGNED, target_username VARCHAR(15), typeid SMALLINT UNSIGNED NOT NULL, duration SMALLINT UNSIGNED NOT NULL, amount SMALLINT UNSIGNED NOT NULL, STATUS VARCHAR(20) NOT NULL, PRIMARY KEY (paymentid), INDEX (paydate, pp_token), INDEX (from_userid), INDEX (target_userid), INDEX (STATUS) )