Add created timestamps for tags

This commit is contained in:
Cameron Cordes
2021-10-11 21:32:17 -04:00
parent 9d925be84d
commit 2e5ac8861c
4 changed files with 16 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ table! {
id -> Integer,
photo_name -> Text,
tag_id -> Integer,
created_time -> BigInt,
}
}
@@ -18,6 +19,7 @@ table! {
tags (id) {
id -> Integer,
name -> Text,
created_time -> BigInt,
}
}