aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20241114170349_create_categories.rb
blob: 983f85cb668d4478a5048bf2732a01e8a063398e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class CreateCategories < ActiveRecord::Migration[8.0]
  def change
    create_table :categories do |t|
      t.string :name
      t.string :colour
      t.string :badge_foreground_colour

      t.timestamps
    end
  end
end