TokiTranslate/db/migrate/20231013015428_create_words.rb
maddiebaka f5e9f3699f Add dictionary ingest and view
Dictionary json ingest to database, view populated with database contents
2023-10-12 22:24:35 -04:00

10 lines
152 B
Ruby

class CreateWords < ActiveRecord::Migration[7.1]
def change
create_table :words do |t|
t.string :word
t.timestamps
end
end
end