Skip to content

Commit

Permalink
Add more payment types
Browse files Browse the repository at this point in the history
  • Loading branch information
jimwins committed Dec 13, 2015
1 parent 4f8f97a commit 0c975f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scat.sql
Expand Up @@ -95,7 +95,7 @@ DROP TABLE IF EXISTS `payment`;
CREATE TABLE `payment` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`txn` int(10) unsigned NOT NULL,
`method` enum('cash','change','credit','square','gift','check','dwolla','discount','withdrawal','bad','donation','internal') NOT NULL,
`method` enum('cash','change','credit','square','stripe','gift','check','dwolla','paypal','discount','withdrawal','bad','donation','internal') NOT NULL,
`amount` decimal(9,3) NOT NULL,
`cc_txn` varchar(10) DEFAULT NULL,
`cc_approval` varchar(30) DEFAULT NULL,
Expand Down

0 comments on commit 0c975f5

Please sign in to comment.