mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 04:52:48 +08:00
19 lines
424 B
SQL
19 lines
424 B
SQL
INSERT INTO
|
|
public.users (username)
|
|
VALUES
|
|
('supabot'),
|
|
('kiwicopple'),
|
|
('awailas'),
|
|
('dragarcia');
|
|
|
|
INSERT INTO
|
|
public.channels (slug)
|
|
VALUES
|
|
('public'),
|
|
('random');
|
|
|
|
INSERT INTO
|
|
public.messages (message, channel_id, user_id)
|
|
VALUES
|
|
('Hello World 👋', 1, 1),
|
|
('Perfection is attained, not when there is nothing more to add, but when there is nothing left to take away.', 2, 1); |