mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
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);
|