Skip to content

JohnYoungers/cockroach-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Initial Setup

docker run --rm -d -p 26257:26257 --name aca-local-crdb cockroachdb/cockroach:v23.1.11 start-single-node --insecure
docker exec aca-local-crdb cockroach sql --insecure -e 'CREATE DATABASE crdbdemo'

docker run -e 'POSTGRES_PASSWORD=sa_password!123456' -p 5432:5432 --name aca-local-psql -d postgres:14.5
docker exec -it aca-local-psql psql -U postgres -d postgres -c 'CREATE DATABASE crdbdemo'

Atlas setup

Apply schema

  • Postgres:
    • atlas schema apply --auto-approve -u 'postgres://postgres:[email protected]:5432/crdbdemo?sslmode=disable' -f file://schema --schema public,Platform
  • Cockroach:
    • atlas schema apply --auto-approve -u 'postgres://[email protected]:26257/crdbdemo?sslmode=disable' -f file://schema --schema public,Platform

Apply migrations (TVFs)

  • Initialization
    • First run atlas migrate hash --dir file://migrations
  • Postgres:
    • atlas migrate apply -u 'postgres://postgres:[email protected]:5432/crdbdemo?sslmode=disable' --dir file://migrations --allow-dirty
  • Cockroach:
    • atlas migrate apply -u 'postgres://[email protected]:26257/crdbdemo?sslmode=disable' --dir file://migrations --allow-dirty
      • crashes with pq: at or near "table": syntax error: unimplemented: this syntax

EFCore Scaffolding

  • Initialization
    • First run dotnet restore to restore the project
    • Then dotnet tool restore to install the cli tool
  • Postgres:
    • dotnet ef dbcontext scaffold "Host=127.0.0.1;Port=5432;Database=crdbdemo;Username=postgres;Password=sa_password!123456" Npgsql.EntityFrameworkCore.PostgreSQL --verbose --context EntityContext --context-dir Entities --output-dir Entities --data-annotations --force --no-onconfiguring --no-pluralize
  • Cockroach:
    • dotnet ef dbcontext scaffold "Host=127.0.0.1;Port=26257;Database=crdbdemo;Username=root" Npgsql.EntityFrameworkCore.PostgreSQL --verbose --context EntityContext --context-dir Entities --output-dir Entities --data-annotations --force --no-onconfiguring --no-pluralize
      • crashes with 42883: unknown function: pg_indexam_has_property(): function undefined

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published