Archived
1
0
Fork 0
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
migra/migra_cli/tests/data/sqlite_invalid/migrations/210218233414_create_persons/up.sql
Dmitriy Pleshevskiy c71e8fe33f feat(clients): move clients to separate dir
refac(core): add batch exec trait
refac(core): smarter managers
refac(cli): removed adapter, builder
2021-06-03 00:22:59 +03:00

15 lines
508 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
);
/* This table doesn't exist
↓↓↓↓↓↓↓ */
ALTER TABLE recipes
ADD COLUMN author_person_id int NULL
REFERENCES persons (id) ON UPDATE CASCADE ON DELETE CASCADE;