Skip to content

Commit

Permalink
Make approved_at null by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekuruu committed Dec 11, 2024
1 parent 5e554c6 commit d5b9498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/002_Beatmaps.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE beatmapsets (
creator_id integer NOT NULL REFERENCES users (id),
created_at timestamp without time zone NOT NULL DEFAULT now(),
last_updated timestamp without time zone NOT NULL DEFAULT now(),
approved_at timestamp without time zone NOT NULL DEFAULT now(),
approved_at timestamp without time zone,
approved_by integer REFERENCES users (id),
status smallint NOT NULL DEFAULT 1,
description text NOT NULL DEFAULT '',
Expand Down

0 comments on commit d5b9498

Please sign in to comment.