1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-17 12:11:24 +00:00
lemmy/migrations/2021-03-31-144349_add_site_short_description/up.sql

6 lines
182 B
MySQL
Raw Normal View History

-- 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);