mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2025-01-09 19:10:29 +05:30
Revert "Add database migration for username length change."
This reverts commit 024435ff54
.
This commit is contained in:
parent
024435ff54
commit
470efd8068
@ -6,6 +6,5 @@
|
||||
|
||||
<include file="version/0-init.xml" relativeToChangelogFile="true"/>
|
||||
<include file="version/1-fix-subs.xml" relativeToChangelogFile="true"/>
|
||||
<include file="version/2-oidc.xml" relativeToChangelogFile="true"/>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
|
||||
https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
|
||||
|
||||
<changeSet id="2-0" author="kavin" runInTransaction="false">
|
||||
<!-- alter username's varchar length to 32 from 24 -->
|
||||
<sql>ALTER TABLE users ALTER COLUMN username TYPE varchar(32);</sql>
|
||||
<rollback>
|
||||
<sql>ALTER TABLE users ALTER COLUMN username TYPE varchar(24);</sql>
|
||||
</rollback>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
Loading…
Reference in New Issue
Block a user