class CreateTablePixlog < ActiveRecord::Migration
  def change
    create_table :pixlogs do |t|
      t.string     :username, limit: 40
      t.string     :company, limit: 20
    end
    add_index :pixlogs, :username, unique: true
  end
end
