Skip to content
#

schema-migrations

Here are 44 public repositories matching this topic...

babinomec
babinomec commented Apr 16, 2020

Not really an issue, but rather another use of the tool that could be advertised in the documentation.

We have slaves that have discrepancies (missing rows, rows with some different values) as highlighted by a very long run of pt-table-checksum. We tried fixing these tables with pt-table-sync with no success.

By running gh-ost on a master using RBR (does not work with statement based replica

stormbytes
stormbytes commented May 5, 2020

sequelize init:models creates a 'models' folder and an index.js file.

What does this do?

How is this intended to be used?

You might consider putting some comments into the file. Would probably save people a lot of hassle trying to figure this out over and over.

Thanks!

SKalt
SKalt commented Jan 16, 2020

Would you be interested in using mypy to validate PEP 484 type annotations as a part of migra's CI? If so, what syntax would you find acceptable? There's:

  1. My first choice, python 3.5+ native syntax:
from typing import Union
def foo(a: str, b: int) -> Union[int, str]:
    return b if b else a
  1. the other option, python 2.7+ inl
morgo
morgo commented Feb 26, 2020

MySQL 8.0 has a lot more reserved words than prior versions (the rationale was to peek ahead at the standard and add them all at once). They are also all accessible via information_schema:

mysql8019> SELECT word FROM information_schema.keywords WHERE reserved=1;
+-------------------------------+
| WORD                          |
+-------------------------------+
| ACCESSIBLE        

Improve this page

Add a description, image, and links to the schema-migrations topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the schema-migrations topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.