Sha256: 5cab37d5c0248b3310dbc07d01763f261bc6ea98369a94bba0db85b0dc947a72

Contents?: true

Size: 172 Bytes

Versions: 1

Compression:

Stored size: 172 Bytes

Contents

class CreateTags < ActiveRecord::Migration
  def self.up
    create_table :tags do |t|
      t.string :name
    end
  end
  
  def self.down
    drop_table :tags
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
enumerate_by-0.4.4 test/app_root/db/migrate/006_create_tags.rb