mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-12 16:10:03 +01:00
10 lines
152 B
MySQL
10 lines
152 B
MySQL
|
|
-- migrate:up
|
||
|
|
CREATE TABLE users (
|
||
|
|
id integer,
|
||
|
|
name varchar
|
||
|
|
);
|
||
|
|
INSERT INTO users (id, name) VALUES (1, 'alice');
|
||
|
|
|
||
|
|
-- migrate:down
|
||
|
|
DROP TABLE users;
|