pub fn table<T>(name: T) -> Table<T>
Expand description

Create a new Table with the given name.

Example

use diesel_dynamic_schema::table;

let users = table("users");