first commit

This commit is contained in:
Elias Renman
2025-03-16 21:54:32 +01:00
commit c39af75112
35 changed files with 2524 additions and 0 deletions

12
src/db/schema.rs Normal file
View File

@@ -0,0 +1,12 @@
// @generated automatically by Diesel CLI.
diesel::table! {
urls (url) {
url -> Text,
destination_url -> Text,
ttl -> Nullable<Timestamp>,
owned_by -> Nullable<Text>,
created_at -> Nullable<Timestamp>,
updated_at -> Nullable<Timestamp>,
}
}