DEVELOPMENT ENVIRONMENT

~liljamo/ulairi

ref: 6881fb5a28bf2746e4aebf61ec5f3b9a4ac7a886 ulairi/ulairi-api/migrations/2022-04-28-071249_users_roles/up.sql -rw-r--r-- 240 bytes
6881fb5aJonni Liljamo docs: update README.md, add LICENSE and NOTICE 11 months ago
                                                                                
1
2
3
4
5
6
7
8
-- Your SQL goes here
-- Normally wouldn't need a primary key, but diesel requires it.
CREATE TABLE users_roles (
  id SERIAL PRIMARY KEY,
  user_id INTEGER REFERENCES users(id) NOT NULL,
  role_id INTEGER REFERENCES roles(id) NOT NULL
);