Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Fix create table
Browse files Browse the repository at this point in the history
  • Loading branch information
regdos committed Oct 31, 2016
1 parent 6779e85 commit cc17a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/model/payment/payu.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ModelPaymentPayu extends Model
public function createDatabaseTables()
{
$sql = "CREATE TABLE IF NOT EXISTS `" . DB_PREFIX . "payu_so` (
`bind_id` int(11) NULL AUTO_INCREMENT PRIMARY KEY,
`bind_id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`order_id` int(32) NOT NULL,
`session_id` varchar(32) NOT NULL,
`status` varchar(32)
Expand Down

0 comments on commit cc17a36

Please sign in to comment.