├── .gitignore ├── README.md ├── hex_to_str.py ├── migrator.sh ├── sample_input.sql ├── sample_output.sql └── sqlite_to_postgres.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/README.md -------------------------------------------------------------------------------- /hex_to_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/hex_to_str.py -------------------------------------------------------------------------------- /migrator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/migrator.sh -------------------------------------------------------------------------------- /sample_input.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/sample_input.sql -------------------------------------------------------------------------------- /sample_output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/sample_output.sql -------------------------------------------------------------------------------- /sqlite_to_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haron/grafana-migrator/HEAD/sqlite_to_postgres.py --------------------------------------------------------------------------------