about summary refs log tree commit diff stats
path: root/db/migrate/20231130173455_create_puzzles.rb
blob: 548473af67c3928be1b7c492da632920ae03265a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class CreatePuzzles < ActiveRecord::Migration[7.1]
  def change
    create_table :puzzles do |t|
      t.text :data
      t.text :solved_data
      t.string :category

      t.timestamps
    end
  end
end