Crates.io | barrel |
lib.rs | barrel |
version | 0.7.0 |
source | src |
created_at | 2018-01-26 11:44:14.161158 |
updated_at | 2021-11-08 15:46:59.915759 |
description | A powerful schema migration building API for Rust |
homepage | https://rust-db.github.io/barrel |
repository | https://github.com/rust-db/barrel |
max_upload_size | |
id | 48374 |
size | 1,219,029 |
A powerful database schema builder, that lets you write your SQL migrations in Rust!
barrel
offers callback-style builder functions for SQL migrations
and is designed to be flexible, portable and fun to use. It provides
you with a common interface over SQL, with additional
database-specific builders.
This way you can focus on your Rust code, without having to worry about SQL.
The following example will help you get started
use barrel::{types, Migration};
use barrel::backend::Pg;
fn main() {
let mut m = Migration::new();
m.create_table("users", |t| {
t.add_column("name", types::varchar(255));
t.add_column("age", types::integer());
t.add_column("owns_plushy_sharks", types::boolean());
});
println!("{}", m.make::<Pg>());
}
Since diesel 1.2.0
it's possible to now use barrel
for migrations
with diesel
. A guide with some more information on how to get
started can be found
here
If you've been using barrel
to write migrations for diesel
before
the 0.5.0
release, some migration of your migrations will be
required. Since 0.5.0
the way types are constructed changed.
Instead of constructing a type with Types::VarChar(255)
(an enum
variant), the types are now provided by a module called types
and
builder functions. The same type would now be types::varchar(255)
(a function call), which then returns a Type
enum.
You can also directly created your own Type
builders this way.
Check the docs for details!
barrel
is free software: you can redistribute it and/or modify it
under the terms of the MIT Public License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MIT Public License for more details.
In the interest of fostering an open and welcoming environment, the
barrel
project pledges to making participation a harassment-free
experience for everyone. See Code of Conduct
for details. In case of violations, e-mail
kookie@spacekookie.de.