blob: 96edaa4322d5b4c384ca8fb45fad37fcb77ee1af (
plain)
1
2
3
4
5
|
-- Add a 'real name' field where users can specify the name they want
-- used for author attribution or other places that real names matter.
ALTER TABLE user
ADD (user_real_name varchar(255) binary NOT NULL default '');
|