docbrown/db/migrate/20180507191509_add_video_state_to_articles.rb

5 lines
132 B
Ruby

class AddVideoStateToArticles < ActiveRecord::Migration[5.1]
def change
add_column :articles, :video_state, :string
end
end