mirror of
https://github.com/UzixLS/migresia.git
synced 2025-07-18 23:01:21 +03:00
10 lines
202 B
Erlang
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", []).
|