Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
grant_program
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Extensions
grant_program
Commits
c913cf9f
Commit
c913cf9f
authored
Sep 24, 2018
by
Monish Deb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes
parent
e036b2eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
29 deletions
+1
-29
sql/grantprograms_install.sql
sql/grantprograms_install.sql
+1
-29
No files found.
sql/grantprograms_install.sql
View file @
c913cf9f
/**
* Grant Programs extension improves grant allocation
* in CiviGrant
*
* Copyright (C) 2012 JMA Consulting
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Support: https://github.com/JMAConsulting/biz.jmaconsulting.grantprograms/issues
*
* Contact: info@jmaconsulting.biz
* JMA Consulting
* 215 Spadina Ave, Ste 400
* Toronto, ON
* Canada M5T 2C7
*/
-- create civicrm_payment table.
CREATE
TABLE
IF
NOT
EXISTS
`civicrm_payment`
(
`id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
COMMENT
'Id'
,
...
...
@@ -34,7 +6,7 @@ CREATE TABLE IF NOT EXISTS `civicrm_payment` (
`payment_reason`
varchar
(
255
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
COMMENT
'Payment Reason.'
,
`payment_status_id`
int
(
10
)
unsigned
DEFAULT
NULL
COMMENT
'Payment Status ID'
,
`replaces_payment_id`
varchar
(
8
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
COMMENT
'Replaces Payment Id.'
,
`replaces_check_number`
varchar
(
20
)
unsigned
NO
T
NULL
COMMENT
'Replaced Check Number'
,
`replaces_check_number`
varchar
(
20
)
COLLATE
utf8_unicode_ci
DEFAUL
T
NULL
COMMENT
'Replaced Check Number'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
AUTO_INCREMENT
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment