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
|