3 lines
131 B
SQL
3 lines
131 B
SQL
alter table users
|
|
add column homepage varchar(500) not null DEFAULT '',
|
|
add column about varchar(500) not null DEFAULT '';
|