1
0
mirror of https://github.com/UzixLS/migresia.git synced 2025-07-18 23:01:21 +03:00
Files
migresia/priv/20160101112233_empty.erl
2016-01-11 14:17:45 +00:00

10 lines
202 B
Erlang

-module('20160101112233_empty').
-behavior(db_migration).
-export([up/0, down/0]).
up() ->
io:format("Empty migration applied.~n", []).
down() ->
io:format("Empty migration reverted.~n", []).