All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.changelogs.v3_10_10.schema-add-last-logout-date.yml Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
databaseChangeLog:
  - changeSet:
      id: 3.10.10-add-last-logout-date
      author: GraviteeSource Team
      changes:

        # Users
        ########################
        - addColumn:
            tableName: users
            columns:
              - column: { name: last_logout_at, type: timestamp(6), constraints: { nullable: true } }

        - addColumn:
            tableName: organization_users
            columns:
              - column: { name: last_logout_at, type: timestamp(6), constraints: { nullable: true } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy