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

12 lines
203 B
MySQL
Raw Normal View History

2021-02-10 09:12:42 +01:00
-- 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)
);