12 lines
415 B
SQL
12 lines
415 B
SQL
-- Your SQL goes here
|
|
|
|
CREATE TABLE persons (
|
|
id int AUTO_INCREMENT PRIMARY KEY,
|
|
email varchar(256) NOT NULL UNIQUE,
|
|
display_name text NOT NULL,
|
|
created_at timestamp NOT NULL DEFAULT current_timestamp
|
|
);
|
|
|
|
ALTER TABLE articles
|
|
ADD COLUMN author_person_id int NULL
|
|
REFERENCES persons (id) ON UPDATE CASCADE ON DELETE CASCADE;
|