cviebrock / sequel-pro-laravel-export

A Sequel Pro / Sequel Ace bundle to generate Laravel migration files from existing tables.
MIT License
921 stars 56 forks source link

Add missing semi-colon #2

Closed marcusmoore closed 8 years ago

marcusmoore commented 8 years ago

Hello,

I noticed that there was a missing semi-colon on indexes and uniques:

// from users table
$table->unique('email', 'users_email_unique')

// from password resets table
$table->index('email', 'password_resets_email_index')
$table->index('token', 'password_resets_token_index')

This should fix it.

cviebrock commented 8 years ago

D'oh! Thanks!