You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nyastodon/db/migrate/20170624134742_add_descript...

12 lines
350 B
Ruby

# frozen_string_literal: true
class AddDescriptionToSessionActivations < ActiveRecord::Migration[5.1]
def change
change_table(:session_activations, bulk: true) do |t|
t.column :user_agent, :string, null: false, default: ''
t.column :ip, :inet
end
add_foreign_key :session_activations, :users, on_delete: :cascade
end
end