Project

General

Profile

Download (229 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateTaxonomies < ActiveRecord::Migration
def self.up
create_table :taxonomies do |t|
t.string :name
t.string :type

t.timestamps
end
end

def self.down
drop_table :taxonomies
end
end
(112-112/137)