tastyigniter / ti-ext-coupons

A TastyIgniter extension that allows you to offer coupon codes and discounts to your customers
MIT License
4 stars 7 forks source link

Remove coupon code length limit on database. #24

Closed djtimca closed 3 years ago

djtimca commented 3 years ago

Removes the length limit of 15 characters on the coupon code from the database. Closes #23

@sampoyigi please validate I've got this right... first time doing a DB migration!

sampoyigi commented 3 years ago

Thank you, should look like this:

Schema::table('igniter_coupons', function (Blueprint $table) {
    $table->string('code')->unique()->change();
});
djtimca commented 3 years ago

Got it - now I see what I missed.

sampoyigi commented 3 years ago

Another thing... The filename except the numbers should match the class name. Make the file name more descriptive 2021_02_22_000300_increase_coupon_code_character_limit.php and the class name to IncreaseCouponCodeCharacterLimit