https://github.com/sharpjs/psql.deploy
Database migration and seeding system for SQL Server and Azure SQL Database
https://github.com/sharpjs/psql.deploy
Last synced: 10 months ago
JSON representation
Database migration and seeding system for SQL Server and Azure SQL Database
- Host: GitHub
- URL: https://github.com/sharpjs/psql.deploy
- Owner: sharpjs
- License: isc
- Created: 2020-08-04T19:18:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-15T18:38:45.000Z (11 months ago)
- Last Synced: 2025-03-15T19:30:18.268Z (11 months ago)
- Language: C#
- Homepage:
- Size: 894 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# PSql.Deploy
PSql.Deploy is a simple, yet versatile database migration and seeding system
for SQL Server and Azure SQL Database.
- Write migrations and seeds in plain T-SQL.
- Run migrations and seeds with PowerShell commands.
- Supports zero-downtime deployment across multiple databases.
- SQLCMD-compatible – `GO`, `$(var)`, `:setvar`, and `:r` (include) work as expected.
- Diagnostics – see the entire batch that caused an error.
## Status
[](https://github.com/sharpjs/PSql.Deploy/actions)
[](https://www.powershellgallery.com/packages/PSql.Deploy)
[](https://www.powershellgallery.com/packages/PSql.Deploy)
Slowly nearing public release.
Based on previous work used privately in production for years.
## Installation
Install [this PowerShell module](https://www.powershellgallery.com/packages/PSql.Deploy).
## Usage
WIP