E.g. rather than clicking table, "add field", clicking the name, typing, clicking the type drop down etc., just start writing something like:
: users.add_column
name: email
type: varchar
length: 200
etc., with some assistive auto completeor, if you're inclined to using an LLM:
add column email to users table, varchar(200)
or, for those who want strict sql: alter table add column...