voormedia/rails-erd

View on GitHub
examples/inheritance/single-inheritance/schema.rb

Summary

Maintainability
A
0 mins
Test Coverage
ActiveRecord::Schema.define do
  create_table "beverages", :force => true do |t|
    t.string :name, :null => false
    t.string :type
    t.string :brand
    t.integer :abv
  end
end