Retrospring/db/migrate/20211222165159_create_mute_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
346 B
Ruby
Raw Normal View History

2023-10-19 16:37:34 -07:00
# frozen_string_literal: true
2021-12-22 10:21:09 -08:00
class CreateMuteRules < ActiveRecord::Migration[5.2]
def change
create_table :mute_rules do |t|
t.references :user, foreign_key: true
t.string :muted_phrase
t.timestamps
end
2022-01-02 06:30:04 -08:00
change_column(:mute_rules, :id, :bigint, default: -> { "gen_timestamp_id('mute_rules'::text)" })
2021-12-22 10:21:09 -08:00
end
end