Files
fizzy/db/migrate/20240723192954_create_splats.rb
T
2024-07-23 15:59:32 -05:00

12 lines
196 B
Ruby

class CreateSplats < ActiveRecord::Migration[8.0]
def change
create_table :splats do |t|
t.string :title
t.text :body
t.string :color
t.timestamps
end
end
end