The given error is quite self descriptive: the attribute size limit is 15 characters and you try to assign a longer string to it. Postgres raises an exception instead of just cutting it to 15 characters as mysql(for instance) would do.
You either shouldnt limit your strings or should add a length validation to your model.
String defaults to 255; should you need more characters, you'd better use Text as type.
Personally, I don't think its worth to limit strings and save a few bytes in your db nowadays.