al13ntown/db/migrate/20260824084537_create_newstuff.rb
2026-08-24 20:12:41 +00:00

9 lines
161 B
Ruby

class CreateNewstuff < ActiveRecord::Migration[8.1]
def change
create_table :newstuffs do |t|
t.text :newstuff
t.timestamps
end
end
end