3 class CreateAcls < ActiveRecord::Migration
5 create_table "acls", myisam_table do |t|
6 t.column "id", :integer_pk, :null => false
7 t.column "address", :inet, :null => false
8 t.column "netmask", :inet, :null => false
9 t.column "k", :string, :null => false
13 add_index "acls", ["k"], :name => "acls_k_idx"