osem-fcy/db/migrate/20130211170728_add_irc_nick_to_people_table.rb

8 lines
157 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-11 18:12:10 +01:00
class AddIrcNickToPeopleTable < ActiveRecord::Migration
def change
add_column :people, :irc_nickname, :string
end
end