add dancers to schema
parent
d56686fc03
commit
12062d2401
|
@ -0,0 +1,2 @@
|
||||||
|
-- This file should undo anything in `up.sql`
|
||||||
|
DROP TABLE dancers;
|
|
@ -0,0 +1,7 @@
|
||||||
|
-- Your SQL goes here
|
||||||
|
CREATE TABLE dancers
|
||||||
|
(
|
||||||
|
id INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
|
||||||
|
stage_name TEXT
|
||||||
|
name TEXT,
|
||||||
|
)
|
Loading…
Reference in New Issue