3scale/porta

View on GitHub
db/migrate/20090923103450_create_system_operations.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateSystemOperations < ActiveRecord::Migration
  def self.up

    create_table :system_operations do |t|
      t.string :ref
      t.string :name
      t.text :description

      t.timestamps
    end
  end

  def self.down
    drop_table :system_operations
  end
end