Skip to content

Instantly share code, notes, and snippets.

View rav1kantsingh's full-sized avatar

Ravikant Singh rav1kantsingh

View GitHub Profile
@rav1kantsingh
rav1kantsingh / id-liquibase-changelog
Last active January 28, 2024 09:06
Id Declaration #liquibase
<column name="id" type="bigint unsigned" autoIncrement="true">
<constraints nullable="false" primaryKey="true"/>
</column>
@rav1kantsingh
rav1kantsingh / auto-update-timestamp-liquibase-changelog.xml
Last active January 28, 2024 09:06
Timestamp Declaration #liquibase
<column name="created_at" type="Timestamp" defaultValueComputed="CURRENT_TIMESTAMP"/>
<column name="updated_at" type="Timestamp"
defaultValueComputed="CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"/>