blob: ebe0bf7ce4b31a97692115b5fe09ebcebf8e8510 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
|