20170430054543_create_clients.rb 334 B

12345678910111213
  1. class CreateClients < ActiveRecord::Migration
  2. def change
  3. create_table :clients do |t|
  4. t.string :room , :null => false , index: { :unique => true }
  5. t.text :nicks , :null => false
  6. t.string :secret , :null => false
  7. t.string :type , :null => false
  8. t.timestamps :null => false
  9. end
  10. end
  11. end