Revert "Removes internal directory"

This reverts commit 5005186cd3.
This commit is contained in:
Dennis Schoepf 2024-04-28 19:00:14 +02:00
parent c2a27a0751
commit c19a675e36
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,8 @@
-- +migrate Up
CREATE table users (
id INTEGER PRIMARY KEY,
name text NOT NULL
);
-- +migrate Down
DROP TABLE users;