mirror of
https://github.com/eliasrenman/url-shortener.git
synced 2026-03-16 20:16:06 +01:00
first commit
This commit is contained in:
12
src/db/schema.rs
Normal file
12
src/db/schema.rs
Normal 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>,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user