debian-mirror-gitlab/db/migrate/20150818213832_add_sent_notifications.rb
2016-06-16 23:09:34 +05:30

15 lines
382 B
Ruby

# rubocop:disable all
class AddSentNotifications < ActiveRecord::Migration
def change
create_table :sent_notifications do |t|
t.references :project
t.references :noteable, polymorphic: true
t.references :recipient
t.string :commit_id
t.string :reply_key, null: false
end
add_index :sent_notifications, :reply_key, unique: true
end
end