c92ee309a9
Got the migrations and datastructures in. Next step is building db utility function into the db module or client module
8 lines
158 B
SQL
8 lines
158 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE roles (
|
|
id SERIAL PRIMARY KEY,
|
|
rolename TEXT NOT NULL,
|
|
groupname TEXT NOT NULL,
|
|
permission TEXT NOT NULL
|
|
)
|