al13ntown/db/migrate/20260824093551_create_bio.rb

14 lines
241 B
Ruby
Raw Normal View History

2026-08-24 20:12:41 +00:00
class CreateBio < ActiveRecord::Migration[8.1]
def change
create_table :bios do |t|
t.string :authorname
t.string :age
t.text :pronouns
t.text :biog
t.text :interests
t.timestamps
end
end
end