umpirsky / currency-list

:moneybag: List of all currencies with names and ISO 4217 codes in all languages and all data formats.
MIT License
309 stars 111 forks source link

incorrect column length `id` #4

Open yog-admin-git opened 7 years ago

yog-admin-git commented 7 years ago

CREATE TABLE list (id VARCHAR(2) NOT NULL, value VARCHAR(64) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;

INSERT INTO list (id, value) VALUES ('AFN', 'Afghan Afghani'); INSERT INTO list (id, value) VALUES ('AFA', 'Afghan Afghani (1927–2002)'); ............. .............

umpirsky commented 7 years ago

Thanks, fixed in https://github.com/umpirsky/list-generator/pull/5, now we just need to update data:

composer update umpirsky/list-generator && ./bin/build

If you are up to the task, I can appreciate and merge PR. :)