Commit 85bf09ff authored by Alper Akgun's avatar Alper Akgun

Merge branch '271240-move-date-col-to-orig-position' into 'master'

Move historical_data.date column back to original position

See merge request gitlab-org/gitlab!46656
parents c0c28d30 ce50a1a7
...@@ -12749,10 +12749,10 @@ CREATE TABLE group_wiki_repositories ( ...@@ -12749,10 +12749,10 @@ CREATE TABLE group_wiki_repositories (
CREATE TABLE historical_data ( CREATE TABLE historical_data (
id integer NOT NULL, id integer NOT NULL,
date date,
active_user_count integer, active_user_count integer,
created_at timestamp without time zone, created_at timestamp without time zone,
updated_at timestamp without time zone, updated_at timestamp without time zone,
date date,
recorded_at timestamp with time zone, recorded_at timestamp with time zone,
CONSTRAINT check_640e8cf66c CHECK ((recorded_at IS NOT NULL)) CONSTRAINT check_640e8cf66c CHECK ((recorded_at IS NOT NULL))
); );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment