diaspora/db/migrate/20110730173137_create_pods.rb

14 lines
211 B
Ruby

class CreatePods < ActiveRecord::Migration
def self.up
create_table :pods do |t|
t.string :host
t.boolean :ssl
t.timestamps
end
end
def self.down
drop_table :pods
end
end