Sha256: 2bcfcbd0101d5c631821dce30cf327cf5c3e3ee90dfc478b5a42ca261367d918
Contents?: true
Size: 268 Bytes
Versions: 20
Compression:
Stored size: 268 Bytes
Contents
class CreateTaxonomies < ActiveRecord::Migration def self.up create_table :taxonomies do |t| t.string :name, :null => false t.string :presentation, :null => false t.timestamps end end def self.down drop_table :taxonomies end end
Version data entries
20 entries across 20 versions & 3 rubygems