main
1class CreateSessions < ActiveRecord::Migration
2 def change
3 create_table :sessions do |t|
4 t.integer :user_id
5 t.string :ip_address
6 t.timestamps
7 end
8 end
9end