1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Source: skeema
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
Andrius Merkys <merkys@debian.org>,
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends:
debhelper-compat (= 13),
dh-golang,
golang-any,
golang-github-fsouza-go-dockerclient-dev,
golang-github-jmoiron-sqlx-dev,
golang-github-mitchellh-go-wordwrap-dev,
golang-github-nozzle-throttler-dev,
golang-github-skeema-mybase-dev,
golang-github-vividcortex-mysqlerr-dev,
golang-golang-x-sync-dev,
golang-golang-x-term-dev,
golang-logrus-dev,
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/skeema
Vcs-Git: https://salsa.debian.org/go-team/packages/skeema.git
Homepage: https://github.com/skeema/skeema
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/skeema/skeema
Package: skeema
Architecture: any
Depends:
${misc:Depends},
${shlibs:Depends},
Built-Using:
${misc:Built-Using},
Description: Schema management CLI for MySQL (program)
Skeema is a tool for managing MySQL tables and schema changes in a
declarative fashion using pure SQL. It provides a CLI tool allowing you
to:
* Export CREATE TABLE statements to the filesystem, for tracking
in a repo (git, hg, svn, etc)
* Diff changes in the schema repo against live DBs to automatically generate
DDL
* Manage multiple environments (e.g. dev, staging, prod) and keep them in sync
with ease
* Configure use of online schema change tools, such as
pt-online-schema-change, for performing ALTERs
* Apply configurable linter rules to proactively catch schema design problems
and enforce company policies
Skeema supports a pull-request-based workflow for schema change submission,
review, and execution. This permits your team to manage schema changes in
exactly the same way as you manage code changes.
|