blob: 9accf92c6100e037b6c6d0092794829582af4828 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# This migration comes from wittle (originally 20231028205751)
class CreateWittlePuzzles < ActiveRecord::Migration[7.1]
def change
create_table :wittle_puzzles do |t|
t.text :data
t.text :solved_data
t.string :category
t.timestamps
end
end
end
|