impress/db/migrate/20230729181111_drop_news_posts.rb

11 lines
197 B
Ruby
Raw Normal View History

class DropNewsPosts < ActiveRecord::Migration
def change
drop_table :news_posts do |t|
t.text :body
t.string :html_class, default: 'success'
t.timestamps
end
end
end