Pslink/migrations/2021-02-10-072528_add_user_profiles/up.sql

12 lines
203 B
SQL

-- Your SQL goes here
CREATE TABLE user_roles
(
id INTEGER PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
description TEXT NOT NULL,
FOREIGN KEY
(link)
REFERENCES users
(id)
);