class CreateWebFiles < ActiveRecord::Migration
  def self.up
    create_table :web_files do |t|
			t.column :name, :string
			t.column :web_directory_id, :integer
			t.column :mimetype_id,:integer
			t.column :created_at, :datetime
			t.column :updated_at, :datetime
    end
  end

  def self.down
    drop_table :web_files
  end
end

