From 65a97d07635b8c819c56cfa1b1d9d754d2bbcfda Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Sun, 4 Oct 2020 21:45:15 -0400 Subject: [PATCH] Fix fixtures: add timezone offsets --- program/fixtures/shows.yaml | 4 ++-- program/fixtures/users.yaml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/program/fixtures/shows.yaml b/program/fixtures/shows.yaml index 83e621f2..32f7587f 100644 --- a/program/fixtures/shows.yaml +++ b/program/fixtures/shows.yaml @@ -9,5 +9,5 @@ description: Unmoderiertes Musikprogramm short_description: Unmoderiertes Musikprogramm email: musikredaktion@helsinki.at - created: 1970-01-01 00:00:00 - last_updated: 1970-01-01 00:00:00 \ No newline at end of file + created: 1970-01-01T00:00:00+01:00 + last_updated: 1970-01-01T00:00:00+01:00 diff --git a/program/fixtures/users.yaml b/program/fixtures/users.yaml index dff42941..78854f4c 100644 --- a/program/fixtures/users.yaml +++ b/program/fixtures/users.yaml @@ -8,7 +8,8 @@ username: admin is_staff: 1 is_active: 1 - date_joined: 2018-01-01 00:00:00 + date_joined: 2018-01-01T00:00:00+01:00 +- model: auth.user pk: 2 fields: id: 2 @@ -18,4 +19,4 @@ username: pm1 is_staff: 1 is_active: 1 - date_joined: 2018-01-01 00:00:00 \ No newline at end of file + date_joined: 2018-01-01T00:00:00+01:00 -- GitLab