Homepage: first publish of a full set of parts for the server
[mwamko.git] / db / migrate / 016_create_openvz_servers.rb
blob9bb69895960d9746900ab8eff69083fbef7bccbd
1 class CreateOpenvzServers < ActiveRecord::Migration
2   def self.up
3     create_table :openvz_servers do |t|
4       t.column :ip,         :string, {:null => false}
5       t.column :fp,         :text
6       t.column :updated_on, :datetime
7     end
8   end
10   def self.down
11     drop_table :openvz_servers
12   end
13 end