3scale/porta

View on GitHub
db/migrate/20090423115942_create_themes.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateThemes < ActiveRecord::Migration
  def self.up
    create_table :themes do |t|
      t.string :title

      t.timestamps
    end
  end

  def self.down
    drop_table :themes
  end
end