# id :integer not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
-# account_id :bigint not null
-# id :bigint not null, primary key
-# target_account_id :bigint not null
+# account_id :integer not null
+# target_account_id :integer not null
# show_reblogs :boolean default(TRUE), not null
#
# id :integer not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
-# account_id :bigint not null
-# id :bigint not null, primary key
-# target_account_id :bigint not null
+# account_id :integer not null
+# target_account_id :integer not null
# show_reblogs :boolean default(TRUE), not null
#
#
# Table name: mutes
#
-# id :bigint not null, primary key
+# id :integer not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
-# account_id :bigint not null
-# target_account_id :bigint not null
# hide_notifications :boolean default(TRUE), not null
+# account_id :integer not null
+# target_account_id :integer not null
#
class Mute < ApplicationRecord
t.boolean "hide_notifications", default: true, null: false
t.bigint "account_id", null: false
t.bigint "target_account_id", null: false
- t.boolean "hide_notifications", default: true, null: false
t.index ["account_id", "target_account_id"], name: "index_mutes_on_account_id_and_target_account_id", unique: true
end