Skip to content

Commit

Permalink
Correct latest alter table statements for
Browse files Browse the repository at this point in the history
  • Loading branch information
jekkos committed Apr 24, 2015
1 parent 49e4567 commit ffc42b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions database/2.3.1_to_2.3.2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ ALTER TABLE `ospos_people`
ALTER TABLE `ospos_sales`
DROP COLUMN `payment_type`,
ADD INDEX `sale_time` (`sale_time`);

ALTER TABLE `ospos_customers`
`company_name` varchar(255) DEFAULT NULL;
ADD COLUMN `company_name` varchar(255) DEFAULT NULL;

ALTER TABLE `ospos_giftcards`
`person_id` int(10) DEFAULT NULL;
MODIFY `person_id` int(10) DEFAULT NULL;

0 comments on commit ffc42b7

Please sign in to comment.