-
Notifications
You must be signed in to change notification settings - Fork 105
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
$ cat sql/1.json
{
"name": "01_create_users_table",
"operations": [
{
"create_table": {
"name": "users",
"columns": [
{
"name": "id",
"type": "serial",
"pk": true
},
{
"name": "name",
"type": "varchar(255)",
"unique": true
},
{
"name": "description",
"type": "text",
"nullable": true
}
]
}
}
]
}
pgroll start sql/1.json --postgres-url 'postgresql://postgres:postgres@127.0.0.1/cal?sslmode=disable'
SUCCESS New version of the schema available under the postgres "public_1" schema
The success message incorrectly print schema name based on the filename (public_1
). But the real schema in the database is called public_01_create_users_table
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working