Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agilord/db_schema_migration
A database schema migration tool for Dart, to execute the proper sequence of SQL commands that are required to get your DB to the desired state.
https://github.com/agilord/db_schema_migration
Last synced: about 3 hours ago
JSON representation
A database schema migration tool for Dart, to execute the proper sequence of SQL commands that are required to get your DB to the desired state.
- Host: GitHub
- URL: https://github.com/agilord/db_schema_migration
- Owner: agilord
- License: bsd-3-clause
- Created: 2016-12-04T22:35:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-19T16:41:22.000Z (about 8 years ago)
- Last Synced: 2024-11-15T08:14:18.978Z (2 months ago)
- Language: Dart
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Database schema migration
A database schema migration tool, to execute the proper sequence of
SQL commands that are required to get your DB to the desired state.The sequence of operations is defined by the sorted order of versions.
Versions are [semver](http://semver.org/), and single numbers (`1`, `2`)
will be transformed accordingly (`1.0.0`, `2.0.0`).## Usage
A simple usage example:
import 'dart:async';
import 'package:db_schema_migration/db_schema_migration.dart';
import 'package:db_schema_migration/postgresql.dart';
import 'package:postgresql/postgresql.dart';
Future main() async {
Connection connection = await _getConnection();
var migrator = new PostgresqlSchemaMigrator();
var migrations = new Migrations();
migrations.add(1,
'CREATE TABLE user(name VARCHAR(127) PRIMARY KEY, password_hash VARCHAR(127));');
migrations.add(2, 'ALTER TABLE user ADD COLUMN address varchar(127);');
await migrator.migrate(connection, 'user', migrations);
// Now the DB has a user table with name, password_hash and address columns.
}## Some usage patterns
How to group migrations:
- per-table migration scripts
- for each table, there is a separate sequence of migrations
- foreign keys must be run as separate migrations after the regular tables are done
- per-package migration scripts (recommended)
- related tables, FKs and indexes are sharing a sequence of migrationsHow to version migrations:
- regular numbers: `1`, `2`, `3`, ...
- date + number: `20161204.1`, `20161204.2`, ...
- date + package id + sequence: `20161204.134.1`, `20161204.134.2`, ...## Links
- [source code][source]
- contributors: [Agilord][agilord][source]: https://github.com/agilord/db_schema_migration
[agilord]: https://www.agilord.com/