blob: 7c5cde4ac515be026e8b993a7df32046c326b412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class CreateNat < ActiveRecord::Migration
def self.up
create_table :nat, :id => false do |t|
t.integer :sticky
t.integer :port
t.integer :proto
t.string :hostname, :limit => '256'
end
add_index :nat, [ :port, :proto, :hostname ], :unique => false, :name => 'nat_map_port_proto'
end
def self.down
drop_table :nat
end
end
|