Merge pull request #16918 from mattwire/smartyerrorevent
[civicrm-core.git] / xml / schema / Pledge / PledgePayment.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Pledge</base>
5 <class>PledgePayment</class>
6 <name>civicrm_pledge_payment</name>
7 <comment>Pledge Payment</comment>
8 <add>2.1</add>
9 <log>true</log>
10 <field>
11 <name>id</name>
12 <uniqueName>pledge_payment_id</uniqueName>
13 <title>Payment ID</title>
14 <type>int unsigned</type>
15 <required>true</required>
16 <import>true</import>
17 <add>2.1</add>
18 </field>
19 <primaryKey>
20 <name>id</name>
21 <autoincrement>true</autoincrement>
22 </primaryKey>
23 <field>
24 <name>pledge_id</name>
25 <title>Pledge</title>
26 <type>int unsigned</type>
27 <required>true</required>
28 <comment>FK to Pledge table</comment>
29 <add>2.1</add>
30 </field>
31 <foreignKey>
32 <name>pledge_id</name>
33 <table>civicrm_pledge</table>
34 <key>id</key>
35 <add>2.1</add>
36 <onDelete>CASCADE</onDelete>
37 </foreignKey>
38 <field>
39 <name>contribution_id</name>
40 <title>Contribution</title>
41 <type>int unsigned</type>
42 <comment>FK to contribution table.</comment>
43 <add>2.1</add>
44 </field>
45 <foreignKey>
46 <name>contribution_id</name>
47 <table>civicrm_contribution</table>
48 <key>id</key>
49 <add>2.1</add>
50 <onDelete>CASCADE</onDelete>
51 </foreignKey>
52 <index>
53 <name>index_contribution_pledge</name>
54 <fieldName>contribution_id</fieldName>
55 <fieldName>pledge_id</fieldName>
56 <add>2.1</add>
57 </index>
58 <field>
59 <name>scheduled_amount</name>
60 <uniqueName>pledge_payment_scheduled_amount</uniqueName>
61 <title>Scheduled Amount</title>
62 <import>true</import>
63 <export>true</export>
64 <type>decimal</type>
65 <required>true</required>
66 <comment>Pledged amount for this payment (the actual contribution amount might be different).</comment>
67 <add>2.1</add>
68 </field>
69 <field>
70 <name>actual_amount</name>
71 <uniqueName>pledge_payment_actual_amount</uniqueName>
72 <title>Actual Amount</title>
73 <import>true</import>
74 <type>decimal</type>
75 <comment>Actual amount that is paid as the Pledged installment amount.</comment>
76 <add>3.2</add>
77 </field>
78 <field>
79 <name>currency</name>
80 <title>Currency</title>
81 <type>varchar</type>
82 <length>3</length>
83 <default>NULL</default>
84 <comment>3 character string, value from config setting or input via user.</comment>
85 <add>3.2</add>
86 <pseudoconstant>
87 <table>civicrm_currency</table>
88 <keyColumn>name</keyColumn>
89 <labelColumn>full_name</labelColumn>
90 <nameColumn>name</nameColumn>
91 <abbrColumn>symbol</abbrColumn>
92 </pseudoconstant>
93 <html>
94 <type>Select</type>
95 </html>
96 </field>
97 <field>
98 <name>scheduled_date</name>
99 <uniqueName>pledge_payment_scheduled_date</uniqueName>
100 <title>Scheduled Date</title>
101 <import>true</import>
102 <export>true</export>
103 <type>datetime</type>
104 <required>true</required>
105 <comment>The date the pledge payment is supposed to happen.</comment>
106 <add>2.1</add>
107 <html>
108 <type>Select Date</type>
109 <formatType>activityDate</formatType>
110 </html>
111 <uniqueTitle>Payment Scheduled</uniqueTitle>
112 </field>
113 <field>
114 <name>reminder_date</name>
115 <uniqueName>pledge_payment_reminder_date</uniqueName>
116 <title>Last Reminder</title>
117 <import>true</import>
118 <type>datetime</type>
119 <comment>The date that the most recent payment reminder was sent.</comment>
120 <add>2.1</add>
121 </field>
122 <field>
123 <name>reminder_count</name>
124 <uniqueName>pledge_payment_reminder_count</uniqueName>
125 <title>Reminders Sent</title>
126 <import>true</import>
127 <type>int unsigned</type>
128 <default>0</default>
129 <comment>The number of payment reminders sent.</comment>
130 <add>2.1</add>
131 </field>
132 <field>
133 <name>status_id</name>
134 <title>Payment Status</title>
135 <uniqueName>pledge_payment_status_id</uniqueName>
136 <import>true</import>
137 <export>false</export>
138 <type>int unsigned</type>
139 <add>2.1</add>
140 <pseudoconstant>
141 <optionGroupName>contribution_status</optionGroupName>
142 </pseudoconstant>
143 </field>
144 <index>
145 <name>index_status</name>
146 <fieldName>status_id</fieldName>
147 <add>2.1</add>
148 </index>
149 </table>