mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
7bd474a843
* Adding a short site description. Fixes #1496 - Renaming old description to sidebar * Adding a back end site desc length check.
6 lines
182 B
SQL
6 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);
|