You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.4 KiB
74 lines
3.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<databaseChangeLog
|
|
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
|
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.9.xsd
|
|
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
|
|
|
|
<changeSet id="00000000000000" author="jhipster">
|
|
<createSequence sequenceName="sequence_generator" startValue="1050" incrementBy="50"/>
|
|
</changeSet>
|
|
|
|
<!--
|
|
JHipster core tables.
|
|
The initial schema has the '00000000000001' id, so that it is over-written if we re-generate it.
|
|
-->
|
|
<changeSet id="00000000000001" author="jhipster">
|
|
<createTable tableName="jhi_persistent_audit_event">
|
|
<column name="event_id" type="bigint" >
|
|
<constraints primaryKey="true" nullable="false"/>
|
|
</column>
|
|
<column name="principal" type="varchar(50)">
|
|
<constraints nullable="false" />
|
|
</column>
|
|
<column name="event_date" type="timestamp"/>
|
|
<column name="event_type" type="varchar(255)"/>
|
|
</createTable>
|
|
|
|
<createTable tableName="jhi_persistent_audit_evt_data">
|
|
<column name="event_id" type="bigint">
|
|
<constraints nullable="false"/>
|
|
</column>
|
|
<column name="name" type="varchar(150)">
|
|
<constraints nullable="false"/>
|
|
</column>
|
|
<column name="value" type="varchar(255)"/>
|
|
</createTable>
|
|
<addPrimaryKey columnNames="event_id, name" tableName="jhi_persistent_audit_evt_data"/>
|
|
|
|
<createIndex indexName="idx_persistent_audit_event"
|
|
tableName="jhi_persistent_audit_event"
|
|
unique="false">
|
|
<column name="principal" type="varchar(50)"/>
|
|
<column name="event_date" type="timestamp"/>
|
|
</createIndex>
|
|
|
|
<createIndex indexName="idx_persistent_audit_evt_data"
|
|
tableName="jhi_persistent_audit_evt_data"
|
|
unique="false">
|
|
<column name="event_id" type="bigint"/>
|
|
</createIndex>
|
|
|
|
<addForeignKeyConstraint baseColumnNames="event_id"
|
|
baseTableName="jhi_persistent_audit_evt_data"
|
|
constraintName="fk_evt_pers_audit_evt_data"
|
|
referencedColumnNames="event_id"
|
|
referencedTableName="jhi_persistent_audit_event"/>
|
|
</changeSet>
|
|
|
|
<changeSet author="jhipster" id="00000000000002" context="test">
|
|
<createTable tableName="jhi_date_time_wrapper">
|
|
<column name="id" type="BIGINT">
|
|
<constraints primaryKey="true" primaryKeyName="jhi_date_time_wrapperPK"/>
|
|
</column>
|
|
<column name="instant" type="timestamp"/>
|
|
<column name="local_date_time" type="timestamp"/>
|
|
<column name="offset_date_time" type="timestamp"/>
|
|
<column name="zoned_date_time" type="timestamp"/>
|
|
<column name="local_time" type="time"/>
|
|
<column name="offset_time" type="time"/>
|
|
<column name="local_date" type="date"/>
|
|
</createTable>
|
|
</changeSet>
|
|
</databaseChangeLog>
|