aboutsummaryrefslogtreecommitdiffstats
path: root/bin/dev_tools/db_migration_config_sample.yml
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dev_tools/db_migration_config_sample.yml')
-rwxr-xr-xbin/dev_tools/db_migration_config_sample.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/bin/dev_tools/db_migration_config_sample.yml b/bin/dev_tools/db_migration_config_sample.yml
new file mode 100755
index 00000000..5d5c9e37
--- /dev/null
+++ b/bin/dev_tools/db_migration_config_sample.yml
@@ -0,0 +1,42 @@
+source:
+ name: sqlite_production
+ type: postgres_production
+destination:
+ name: postgres_production
+ type: postgres
+
+sqlite_production:
+ path: srt.sqlite
+
+sqlite_development:
+ path: srt_dev.sqlite
+
+postgres_production:
+ host: localhost
+ user: admin
+ password: password
+ database: srtool
+ port: 5432
+
+postgres_development:
+ host: localhost
+ user: admin
+ password: password
+ database: srtool_dev
+ port: 5432
+
+mysql_production:
+ host: localhost
+ user: admin
+ password: password
+ db: srtool
+ port: 3306
+
+mysql_development:
+ host: localhost
+ user: admin
+ password: password
+ db: srtool_dev
+ port: 3306
+
+