Homepage: first publish of a full set of parts for the server
[mwamko.git] / db / migrate / 004_create_virtual_environments.rb
blob0cf9849ebf22cb67e61f01a04dd9ae1db542ccac
1 class CreateVirtualEnvironments < ActiveRecord::Migration
2   def self.up
3     create_table :virtual_environments do |t|      
4       t.column :veid,       :integer
5       t.column :uid,        :integer
6       t.column :status,     :string
7       t.column :updated_on, :datetime      
8     end
9     add_index(:virtual_environments, :veid, :unique => true)
10   end
12   def self.down
13     drop_table :virtual_environments
14   end
15 end