mirror of https://github.com/LemmyNet/lemmy.git
6 lines
182 B
MySQL
6 lines
182 B
MySQL
|
-- Renaming description to sidebar
|
||
|
alter table site rename column description to sidebar;
|
||
|
|
||
|
-- Adding a short description column
|
||
|
alter table site add column description varchar(150);
|