mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-19 07:32:34 +08:00
8 lines
260 B
Ruby
8 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddNameColumnToTextComponent < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :result_texts, :name, :string, default: '', index: true
|
|
add_column :step_texts, :name, :string, default: '', index: true
|
|
end
|
|
end
|