mirror of
https://gitdab.com/cadence/out-of-your-element.git
synced 2025-09-10 04:12:50 +02:00
New emoji storage and bug fixes in setup
This commit is contained in:
parent
60a53f76bb
commit
7a59f48c0a
6 changed files with 48 additions and 60 deletions
11
src/db/migrations/0022-auto-emoji-without-guild.sql
Normal file
11
src/db/migrations/0022-auto-emoji-without-guild.sql
Normal file
|
@ -0,0 +1,11 @@
|
|||
BEGIN TRANSACTION;
|
||||
|
||||
DROP TABLE auto_emoji;
|
||||
|
||||
CREATE TABLE auto_emoji (
|
||||
name TEXT NOT NULL,
|
||||
emoji_id TEXT NOT NULL,
|
||||
PRIMARY KEY (name)
|
||||
) WITHOUT ROWID;
|
||||
|
||||
COMMIT;
|
Loading…
Add table
Add a link
Reference in a new issue