mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-08 07:55:14 +08:00
6 lines
163 B
Ruby
6 lines
163 B
Ruby
# frozen_string_literal: true
|
|
class AddNameToMarvinJsAssets < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :marvin_js_assets, :name, :string
|
|
end
|
|
end
|