14 lines
281 B
XML
14 lines
281 B
XML
diesel::table! {
|
|
messages (id) {
|
|
id -> Text,
|
|
guild_id -> BigInt,
|
|
channel_id -> BigInt,
|
|
user_id -> BigInt,
|
|
created -> BigInt,
|
|
model -> Text,
|
|
request -> Text,
|
|
response -> Text,
|
|
request_tags -> Array<Text>,
|
|
response_tags -> Array<Text>,
|
|
}
|
|
} |