TrestleAdmin/trestle

View on GitHub
sandbox/db/migrate/20210712104832_create_categories.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateCategories < ActiveRecord::Migration[6.1]
  def change
    create_table :categories do |t|
      t.string :name
      t.string :color

      t.timestamps
    end
  end
end