Class: AddRooms

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/tkellem/migrations/005_add_rooms.rb

Class Method Summary collapse

Class Method Details

.upObject



2
3
4
5
6
7
# File 'lib/tkellem/migrations/005_add_rooms.rb', line 2

def self.up
  create_table 'rooms' do |t|
    t.integer :network_user_id
    t.string  :name
  end
end