Skip to content

Commit ab97310

Browse files
Merge pull request #555 from Heigvd/dev
init firstname of users
2 parents 8a9139e + 1c1b506 commit ab97310

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
2+
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
3+
<changeSet author="sandra" id="1702881700111-1">
4+
<update tableName="users">
5+
<column name="firstname" valueComputed="commonname"/>
6+
<where>firstname is null</where>
7+
</update>
8+
</changeSet>
9+
<changeSet author="sandra" id="1702881700111-2">
10+
<update tableName="users">
11+
<column name="firstname" valueComputed="username"/>
12+
<where>firstname is null</where>
13+
</update>
14+
</changeSet>
15+
</databaseChangeLog>

0 commit comments

Comments
 (0)