dawarich/db/migrate/20240703105734_create_notifications.rb

15 lines
383 B
Ruby
Raw Permalink Normal View History

2024-07-04 16:20:12 -04:00
class CreateNotifications < ActiveRecord::Migration[7.1]
def change
create_table :notifications do |t|
t.string :title, null: false
t.text :content, null: false
t.references :user, null: false, foreign_key: true
t.integer :kind, null: false, default: 0
t.datetime :read_at
t.timestamps
end
add_index :notifications, :kind
end
end