add dancers to schema

main
Zynh0722 2023-11-04 02:43:41 -07:00
parent d56686fc03
commit 12062d2401
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE dancers;

View File

@ -0,0 +1,7 @@
-- Your SQL goes here
CREATE TABLE dancers
(
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
stage_name TEXT
name TEXT,
)