Add parts of speech model and database ingest rake task

This commit is contained in:
maddiebaka
2023-10-12 20:02:10 -04:00
parent b58f54943b
commit 6f46b1be7c
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class CreatePartOfSpeeches < ActiveRecord::Migration[7.1]
def change
create_table :part_of_speeches do |t|
t.string :pos
t.string :definition
t.timestamps
end
end
end