TokiTranslate/db/migrate/20231013015428_create_words.rb

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