1 class CreateAcls < ActiveRecord::Migration
3 create_table "acls", myisam_table do |t|
4 t.column "id", :integer, :null => false
5 t.column "address", :integer, :null => false
6 t.column "netmask", :integer, :null => false
7 t.column "k", :string, :null => false
11 add_primary_key "acls", ["id"]
12 add_index "acls", ["k"], :name => "acls_k_idx"
14 change_column "acls", "id", :integer, :null => false, :options => "AUTO_INCREMENT"
15 change_column "acls", "address", :integer, :null => false, :unsigned => true
16 change_column "acls", "netmask", :integer, :null => false, :unsigned => true