mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-11 23:50:04 +01:00
Move stubs to testdata directory
This commit is contained in:
parent
7da72a308a
commit
d97ed2be10
2 changed files with 8 additions and 6 deletions
9
testdata/db/migrations/20151129054053_test_migration.sql
vendored
Normal file
9
testdata/db/migrations/20151129054053_test_migration.sql
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- migrate:up
|
||||
create table users (
|
||||
id integer,
|
||||
name varchar(255)
|
||||
);
|
||||
insert into users (id, name) values (1, 'alice');
|
||||
|
||||
-- migrate:down
|
||||
drop table users;
|
||||
Loading…
Add table
Add a link
Reference in a new issue