├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── question.yml ├── release-drafter.yml └── workflows │ ├── _build.yml │ ├── dev.yml │ ├── main.yml │ ├── pr.yml │ └── release-drafter.yml ├── .gitignore ├── AppwriteMigrator.sln ├── LICENSE ├── README.md ├── renovate.json └── src └── PinguApps.AppwriteMigrator ├── AppwriteCommands.cs ├── Converters └── JObjectConverter.cs ├── Models ├── Attribute.cs ├── CollectionExtended.cs └── DatabaseExtended.cs ├── PinguApps.AppwriteMigrator.csproj ├── Program.cs ├── Properties └── launchSettings.json ├── Utils ├── DateTimeUtils.cs └── ListUtils.cs ├── appwrite-schema.json └── icon.png /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/workflows/_build.yml -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/.gitignore -------------------------------------------------------------------------------- /AppwriteMigrator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/AppwriteMigrator.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/README.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/renovate.json -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/AppwriteCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/AppwriteCommands.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Converters/JObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Converters/JObjectConverter.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Models/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Models/Attribute.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Models/CollectionExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Models/CollectionExtended.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Models/DatabaseExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Models/DatabaseExtended.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/PinguApps.AppwriteMigrator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/PinguApps.AppwriteMigrator.csproj -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Program.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Utils/DateTimeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Utils/DateTimeUtils.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/Utils/ListUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/Utils/ListUtils.cs -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/appwrite-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/appwrite-schema.json -------------------------------------------------------------------------------- /src/PinguApps.AppwriteMigrator/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinguApps/AppwriteMigrator/HEAD/src/PinguApps.AppwriteMigrator/icon.png --------------------------------------------------------------------------------