mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-09 23:28:02 -05:00
9 lines
259 B
Ruby
9 lines
259 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddGuidToNotifications < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :notifications, :guid, :string
|
|
add_index :notifications, :guid, name: :index_notifications_on_guid, length: 191, unique: true
|
|
end
|
|
end
|