feat: sync built-in sticker bot
This commit is contained in:
parent
7096625e13
commit
6867d201ed
60 changed files with 7063 additions and 144 deletions
14
deploy/migrations/0042_sticker_set_creator.down.sql
Normal file
14
deploy/migrations/0042_sticker_set_creator.down.sql
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
DROP INDEX IF EXISTS public.sticker_sets_creator_idx;
|
||||
DROP INDEX IF EXISTS public.sticker_sets_short_name_lower_idx;
|
||||
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS sticker_sets_short_name_idx
|
||||
ON public.sticker_sets USING btree (short_name)
|
||||
WHERE (short_name <> ''::text);
|
||||
|
||||
ALTER TABLE public.sticker_sets
|
||||
DROP COLUMN IF EXISTS updated_at,
|
||||
DROP COLUMN IF EXISTS keywords,
|
||||
DROP COLUMN IF EXISTS software,
|
||||
DROP COLUMN IF EXISTS deleted,
|
||||
DROP COLUMN IF EXISTS text_color,
|
||||
DROP COLUMN IF EXISTS creator_user_id;
|
||||
Loading…
Add table
Add a link
Reference in a new issue