Hey, Yichun
Thanks for this awesome tool.
What do you think of loading an array from an external file?
So instead of this:
table users(
id serial;
nickname text {'john','jen','adams'} not null;
)
It becomes something like this
table users(
id serial;
nickname text load(a_very_long_list_of_nicknames.txt) not null;
)