mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:19:52 +01:00
11 lines
264 B
Ruby
11 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddInputPlaceholderToThemes < ActiveRecord::Migration[6.1]
|
|
def up
|
|
add_column :themes, :input_placeholder, :integer, default: 0x6C757D, null: false
|
|
end
|
|
|
|
def down
|
|
remove_column :themes, :input_placeholder
|
|
end
|
|
end
|