A table `users(id SERIAL PRIMARY KEY, name TEXT, role TEXT DEFAULT 'member')` is inserted into as below. What is the `role` of the new row?INSERT INTO users (name) VALUES ('Mia');