Skip to content
Snippets Groups Projects
Commit e2fe149b authored by Allen Gilliland's avatar Allen Gilliland
Browse files

add new migration that adds a 'report_timezone' column to the core_organization table.

parent 85b6b546
No related branches found
No related tags found
No related merge requests found
{
"databaseChangeLog": [
{
"changeSet": {
"id": "5",
"author": "agilliland",
"changes": [
{
"addColumn": {
"tableName": "core_organization",
"columns": [
{
"column": {
"name": "report_timezone",
"type": "varchar(254)"
}
}
]
}
}
]
}
}
]
}
......@@ -2,6 +2,7 @@
"databaseChangeLog": [
{"include": {"file": "migrations/001_initial_schema.json"}},
{"include": {"file": "migrations/002_add_session_table.json"}},
{"include": {"file": "migrations/004_add_setting_table.json"}}
{"include": {"file": "migrations/004_add_setting_table.json"}},
{"include": {"file": "migrations/005_add_org_report_tz_column.json"}}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment