009_create_organizations.rb 176 Bytes
class CreateOrganizations < ActiveRecord::Migration
  def self.up
    create_table :organizations do |t|
    end
  end

  def self.down
    drop_table :organizations
  end
end