12 lines
211 B
SQL
12 lines
211 B
SQL
|
|
-- Your SQL goes here
|
||
|
|
|
||
|
|
create table qumu_group
|
||
|
|
(
|
||
|
|
id varchar not null primary key unique,
|
||
|
|
group_name varchar not null,
|
||
|
|
qumu_ids jsonb,
|
||
|
|
created_at timestamp,
|
||
|
|
created_by timestamp
|
||
|
|
);
|
||
|
|
|