testy/db/migrate/20260517111106_create_chains.rb

10 lines
154 B
Ruby
Raw Permalink Normal View History

2026-05-17 11:12:43 +00:00
class CreateChains < ActiveRecord::Migration[8.0]
def change
create_table :chains do |t|
t.string :name
t.timestamps
end
end
end