forked from OpenNeo/impress
8aa4aa6e30
We never ended up really using this lol, and it has an attr_accessible I want to be rid of so let's just fully trash it while we're at it!
10 lines
197 B
Ruby
10 lines
197 B
Ruby
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
|