9 lines
154 B
Ruby
9 lines
154 B
Ruby
class CreateChains < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :chains do |t|
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|