src/allographer/schema_builder/usecases/sub/migration_table_def

Search:
Group by:

Lets

migrationTable: Table = table("_allographer_migrations", [
    increments(Column, "index"), string(Column, "name", 256),
    text(Column, "query"), index(string(Column, "checksum", 256)),
    index(datetime(Column, "created_at")), boolean(Column, "status")], "")