lume/src-tauri/migrations/20230425024708_add_default_channels.sql

38 lines
794 B
MySQL
Raw Normal View History

2023-04-25 03:17:36 +00:00
-- Add migration script here
INSERT
2023-05-26 02:28:49 +00:00
OR IGNORE INTO channels (
event_id,
pubkey,
name,
about,
picture,
created_at
)
2023-04-25 03:17:36 +00:00
VALUES
(
"e3cadf5beca1b2af1cddaa41a633679bedf263e3de1eb229c6686c50d85df753",
"126103bfddc8df256b6e0abfd7f3797c80dcc4ea88f7c2f87dd4104220b4d65f",
2023-05-26 02:28:49 +00:00
"lume-general",
"General channel for Lume",
"https://void.cat/d/UNyxBmAh1MUx5gQTX95jyf.webp",
2023-04-25 03:17:36 +00:00
1681898574
);
INSERT
2023-05-26 02:28:49 +00:00
OR IGNORE INTO channels (
event_id,
pubkey,
name,
about,
picture,
created_at
)
2023-04-25 03:17:36 +00:00
VALUES
(
"25e5c82273a271cb1a840d0060391a0bf4965cafeb029d5ab55350b418953fbb",
"ed1d0e1f743a7d19aa2dfb0162df73bacdbc699f67cc55bb91a98c35f7deac69",
2023-05-26 02:28:49 +00:00
"Nostr",
"",
"https://cloudflare-ipfs.com/ipfs/QmTN4Eas9atUULVbEAbUU8cowhtvK7g3t7jfKztY7wc8eP?.png",
2023-04-25 03:17:36 +00:00
1661333723
);