index
:
routemon
main
Routemon
Rutger Broekhoff
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
server
/
migrations
/
1_init_up.sql
blob: 7edb39836483e34ca5830dd7100d2639dc204b15 (
about
) (
plain
) (
blame
)
1
2
3
4
5
6
7
BEGIN
;
CREATE TABLE
migration
(
version
);
INSERT INTO
migration
VALUES
(
1
);
COMMIT
;