diff --git a/migrations/2023-11-04-093412_create_dancers/down.sql b/migrations/2023-11-04-093412_create_dancers/down.sql new file mode 100644 index 0000000..722d46d --- /dev/null +++ b/migrations/2023-11-04-093412_create_dancers/down.sql @@ -0,0 +1,2 @@ +-- This file should undo anything in `up.sql` +DROP TABLE dancers; diff --git a/migrations/2023-11-04-093412_create_dancers/up.sql b/migrations/2023-11-04-093412_create_dancers/up.sql new file mode 100644 index 0000000..6875a9a --- /dev/null +++ b/migrations/2023-11-04-093412_create_dancers/up.sql @@ -0,0 +1,7 @@ +-- Your SQL goes here +CREATE TABLE dancers +( + id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT, + stage_name TEXT + name TEXT, +)