mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
7bd474a843
* Adding a short site description. Fixes #1496 - Renaming old description to sidebar * Adding a back end site desc length check.
5 lines
182 B
SQL
5 lines
182 B
SQL
-- 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);
|