mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
10 lines
230 B
Ruby
10 lines
230 B
Ruby
class AddNotesToArtists < ActiveRecord::Migration[5.1]
|
|
def self.up
|
|
execute "alter table artists add column notes text not null default ''"
|
|
end
|
|
|
|
def self.down
|
|
execute "alter table artists drop column notes"
|
|
end
|
|
end
|