f5e9f3699f
Dictionary json ingest to database, view populated with database contents
10 lines
152 B
Ruby
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
|