al13ntown/db/migrate/20260824063536_create_profiles.rb

13 lines
227 B
Ruby
Raw Normal View History

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