Releases: ocomsoft/makemigrations
Releases · ocomsoft/makemigrations
Release v0.2.1.1
Release v0.2.1.1
Django-style Migration Generator for Go
This release provides cross-platform binaries for the makemigrations tool.
Supported Platforms
- Linux: amd64, arm64
- macOS: amd64 (Intel), arm64 (Apple Silicon)
- Windows: amd64, arm64
Quick Installation
Linux/macOS
# Download and install (replace with your platform/arch)
curl -L "https://github.com/ocomsoft/makemigrations/releases/download/v0.2.1.1/makemigrations-linux-amd64" -o makemigrations
chmod +x makemigrations
sudo mv makemigrations /usr/local/bin/
# Verify installation
makemigrations --versionWindows (PowerShell)
# Download (replace with your architecture)
Invoke-WebRequest -Uri "https://github.com/ocomsoft/makemigrations/releases/download/v0.2.1.1/makemigrations-windows-amd64.exe" -OutFile "makemigrations.exe"
# Add to PATH or use directly
.\makemigrations.exe --versionAvailable Downloads
makemigrations-linux-amd64- Linux x86_64makemigrations-linux-arm64- Linux ARM64makemigrations-darwin-amd64- macOS Intelmakemigrations-darwin-arm64- macOS Apple Siliconmakemigrations-windows-amd64.exe- Windows x86_64makemigrations-windows-arm64.exe- Windows ARM64checksums.txt- SHA256 checksums for verification
Verification
Verify your download with SHA256 checksums:
sha256sum -c checksums.txtGetting Started
# Initialize a new project
makemigrations init
# Generate migrations from YAML schemas
makemigrations makemigrations
# Convert Go structs to YAML schema
makemigrations struct2schema
# Get help
makemigrations --helpFor detailed documentation and examples, visit our GitHub repository.
Full Changelog: v0.2.1...v0.2.1.1