mirror of
https://github.com/Neetpone/foalfetch.git
synced 2025-02-08 18:06:43 +01:00
9 lines
229 B
Ruby
9 lines
229 B
Ruby
|
class RemoveUrls < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
remove_column :stories, :url, :text
|
||
|
remove_column :chapters, :url, :text
|
||
|
remove_column :tags, :url, :text
|
||
|
remove_column :authors, :url, :text
|
||
|
end
|
||
|
end
|