Sorry for the annoying question, but I didn't find the way to create a table with a CHAR column. I want CHAR, not VARCHAR!
In the documentation, they don't write anything about CHAR type columns: http://laravel.com/docs/database/schema
What if I want a CHAR(6) type column where only 6 char long strings are allowed, must I create a varchar column and forbid in the model to be shorter or longer than 6 char?