This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change account ids to snowflake ids (mastodon#15844)
Co-authored-by: Eugen Rochko <[email protected]>
- Loading branch information
1 parent
ce2148c
commit d5edf22
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class AccountIdsToTimestampIds < ActiveRecord::Migration[5.1] | ||
def up | ||
# Set up the accounts.id column to use our timestamp-based IDs. | ||
safety_assured do | ||
execute("ALTER TABLE accounts ALTER COLUMN id SET DEFAULT timestamp_id('accounts')") | ||
end | ||
|
||
# Make sure we have a sequence to use. | ||
Mastodon::Snowflake.ensure_id_sequences_exist | ||
end | ||
|
||
def down | ||
execute("LOCK accounts") | ||
execute("SELECT setval('accounts_id_seq', (SELECT MAX(id) FROM accounts))") | ||
execute("ALTER TABLE accounts ALTER COLUMN id SET DEFAULT nextval('accounts_id_seq')") | ||
end | ||
end |
This file contains 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