Skip to content
Snippets Groups Projects
20160608134500_add_creation_method.rb 142 B
require 'active_record'

class AddCreationMethod < ActiveRecord::Migration
	def change
		add_column :users, :creation_method, :string
	end
end