diff options
author | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-18 10:32:01 -0600 |
---|---|---|
committer | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-18 10:32:01 -0600 |
commit | 7969e3a85dcb2d936fa2e09b4253b8e801c48c6e (patch) | |
tree | ae79a0c9fffa47d1a1fadbac189fc3d47b6794a2 /tosin-macros/src | |
parent | 709eb44ccb8d08ad7f26cdac2932eadc7ccd48e7 (diff) | |
download | tosin-7969e3a85dcb2d936fa2e09b4253b8e801c48c6e.tar.gz tosin-7969e3a85dcb2d936fa2e09b4253b8e801c48c6e.zip |
make gathered list names consistent
Diffstat (limited to 'tosin-macros/src')
-rw-r--r-- | tosin-macros/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tosin-macros/src/lib.rs b/tosin-macros/src/lib.rs index 408378f..531a92b 100644 --- a/tosin-macros/src/lib.rs +++ b/tosin-macros/src/lib.rs @@ -50,7 +50,7 @@ pub fn gather_migrations(_input: TokenStream) -> TokenStream { let gen = quote! { #( mod #migrations; )* - pub const migrations: &[Migration] = &[ + pub const ALL: &[Migration] = &[ #(#migrations::MIGRATION),* ]; }; |