al13ntown/db/migrate/20260824084537_create_newstuff.rb

10 lines
161 B
Ruby
Raw Normal View History

2026-08-24 20:12:41 +00:00
class CreateNewstuff < ActiveRecord::Migration[8.1]
def change
create_table :newstuffs do |t|
t.text :newstuff
t.timestamps
end
end
end