mirror of
https://github.com/discourse/discourse.git
synced 2024-12-26 22:46:37 +08:00
13 lines
274 B
Ruby
13 lines
274 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Migrations::Converters::Example
|
||
|
class Step1 < ::Migrations::Converters::Base::Step
|
||
|
title "Hello world"
|
||
|
|
||
|
def execute
|
||
|
super
|
||
|
IntermediateDB::LogEntry.create!(type: "info", message: "This is a test")
|
||
|
end
|
||
|
end
|
||
|
end
|