misadventure/db/migrate/20250907225919_create_tapes.rb

9 lines
153 B
Ruby

class CreateTapes < ActiveRecord::Migration[8.0]
def change
create_table :tapes do |t|
t.string :title
t.timestamps
end
end
end