forked from e621ng/e621ng
8 lines
171 B
Ruby
8 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddTitleToPosts < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column(:posts, :title, :text, null: false, default: "")
|
|
end
|
|
end
|