beam-migrate-0.4.0.0: SQL DDL support and migrations support library for Beam

Safe HaskellNone
LanguageHaskell2010

Database.Beam.Migrate.SQL

Description

Manual alternative to the CheckedDatabaseSettings mechanism.

Database schemas are given as sequences of DDL commands expressed in a beam-migrate DSL. The runMigrationSilenced function can be used to recover the CheckedDatabaseSettings that represents the database settings as well as the database predicates corresponding to the sequence of DDL commands.

This is often a more concise way of specifying a database schema when your database names are wildly different from the defaults beam assigns or you multiple constraints that make modifying the auto-generated schema too difficult.

Synopsis

Documentation

type TableSchema be tbl = tbl (TableFieldSchema be) Source #

A table schema, produced by createTable

data TableFieldSchema be a Source #

A schema for a field within a given table

newtype FieldSchema be a Source #

A schema for a field which hasn't been named yet

Instances
BeamMigrateOnlySqlBackend be => Eq (FieldSchema be a) Source # 
Instance details

Defined in Database.Beam.Migrate.SQL.Types

Methods

(==) :: FieldSchema be a -> FieldSchema be a -> Bool #

(/=) :: FieldSchema be a -> FieldSchema be a -> Bool #