We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Para poder migrar de una versión anterior, se debe colocar el cambio que agrega la tabla seed como evolución para el liquibase.
seed
<changeSet author="danicricco" id="1518643732286-101"> <createTable tableName="seed" schemaName="joko_security" remarks="Guarda las semillas OTP"> <column name="id" type="BIGSERIAL"> <constraints nullable="false"/> </column> <column name="user_id" type="VARCHAR(255)"/> <column name="seed_secret" type="VARCHAR(255)"/> </createTable> </changeSet> <changeSet author="danicricco" id="1518643732286-102"> <addPrimaryKey columnNames="id" constraintName="seed_pkey" tableName="seed" schemaName="joko_security"/> </changeSet>
Se debe pasar ese changeset del inicial al evolución.
inicial
evolución
The text was updated successfully, but these errors were encountered:
gabrielci
No branches or pull requests
Para poder migrar de una versión anterior, se debe colocar el cambio que agrega la tabla
seed
como evolución para el liquibase.Se debe pasar ese changeset del
inicial
alevolución
.The text was updated successfully, but these errors were encountered: