20120711104308_create_bots.rb 196 B

1234567891011
  1. class CreateBots < ActiveRecord::Migration
  2. def change
  3. create_table :bots do |t|
  4. t.string :botnick
  5. t.string :owner
  6. t.boolean :activate
  7. t.timestamps
  8. end
  9. end
  10. end