5 lines
174 B
MySQL
5 lines
174 B
MySQL
|
|
-- Add avatar field to users table
|
||
|
|
-- This field will store the filename of the uploaded avatar image
|
||
|
|
ALTER TABLE users
|
||
|
|
ADD COLUMN avatar VARCHAR(255) NULL AFTER full_name;
|