<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
	xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
	xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">

	<changeSet author="wim" id="fill_countrycodes">
		<loadData file="countrycodes.csv" tableName="countrycodes" />
	</changeSet>

	<changeSet author="wim" id="fill_currencies">
		<loadData file="currencies.csv" tableName="currencies" />
	</changeSet>

	<changeSet author="wim" id="fill_functions">
		<loadData file="functions.csv" tableName="functions" />
	</changeSet>

	<changeSet author="wim" id="fill_roles">
		<loadData file="roles.csv" tableName="roles" />
	</changeSet>

	<changeSet author="wim" id="fill_function_roles">
		<loadData file="function_roles.csv" tableName="function_roles" />
	</changeSet>

	<changeSet author="wim" id="fill_setup">
		<loadData file="setup.csv" tableName="setup" />
	</changeSet>
</databaseChangeLog>