Skip to content

fernandomarca/diesel-point

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

diesel-point   Latest Version docs

Diesel support for Point types in Postgres

Example usage

In your sql schema, you have a column some_point_field Point not null. When Diesel generates the schema (using table! {}) this column will look like some_point_field -> Point. To ensure that the Point type is in scope, read this guide and add use diesel_point::sql_types::* to the import_types key in your diesel.toml file.

E.g. it will look like this:

[print_schema]
file = "src/schema.rs"

import_types = ["diesel::sql_types::*", "diesel_point::sql_types::*"]

In your ORM struct, write some_point_field: PointXy.

Now you can use this struct / table in your diesel queries.

If your table has already been created, first run diesel migration revert. Use PointXy in the ORM struct, and then run the migration again.

Example

#[derive(Insertable, Queryable, Identifiable, Serialize, PartialEq, Debug, Clone, AsChangeset)]
#[diesel(primary_key(model_id))]
#[diesel(table_name = my_table)]
pub struct Mytable{
    pub model_id: Uuid,
    pub some_point_field: PointXy,
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages