feat: add channel ordering
This commit is contained in:
parent
bcb82d0f46
commit
d8541b2eea
7 changed files with 74 additions and 15 deletions
|
@ -0,0 +1,2 @@
|
|||
-- This file should undo anything in `up.sql`
|
||||
ALTER TABLE channels DROP COLUMN is_above;
|
2
migrations/2025-05-26-181536_add_channel_ordering/up.sql
Normal file
2
migrations/2025-05-26-181536_add_channel_ordering/up.sql
Normal file
|
@ -0,0 +1,2 @@
|
|||
-- Your SQL goes here
|
||||
ALTER TABLE channels ADD COLUMN is_above UUID UNIQUE REFERENCES channels(uuid) DEFAULT NULL;
|
Loading…
Add table
Add a link
Reference in a new issue