sillyforum/db/migrate/20260317100221_create_users.rb

10 lines
180 B
Ruby
Raw Normal View History

2026-03-17 12:49:38 +00:00
class CreateUsers < ActiveRecord::Migration[8.1]
def change
create_table :users do |t|
t.timestamps
t.string :displayname
t.text :profile
end
end
end