Last active
October 15, 2024 15:03
-
-
Save Tusenka/fcd23be9b66c32b1975715f4ff327ddf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE post_partitioned ( | |
pk int GENERATED ALWAYS AS IDENTITY, | |
title TEXT, | |
content TEXT, | |
author INTEGER, | |
category INTEGER, | |
reply_to INTEGER, | |
created_on TIMESTAMP WITH TIME ZONE, | |
last_edited_on TIMESTAMP WITH TIME ZONE, | |
editable BOOLEAN, | |
likes INTEGER, | |
CONSTRAINT created UNIQUE ( pk, created_on ) | |
) | |
PARTITION BY RANGE (created_on); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment