mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-19 06:44:23 +01:00
Add new_channel_params table
This commit is contained in:
committed by
Jesse de Wit
parent
21da862da6
commit
e2912be9be
1
postgresql/migrations/000011_new_channel_params.down.sql
Normal file
1
postgresql/migrations/000011_new_channel_params.down.sql
Normal file
@@ -0,0 +1 @@
|
||||
DROP TABLE public.new_channel_params;
|
||||
5
postgresql/migrations/000011_new_channel_params.up.sql
Normal file
5
postgresql/migrations/000011_new_channel_params.up.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE public.new_channel_params (
|
||||
validity int NOT NULL,
|
||||
params jsonb NOT NULL
|
||||
);
|
||||
CREATE UNIQUE INDEX new_channel_params_validity_idx ON public.new_channel_params (validity);
|
||||
Reference in New Issue
Block a user