5 lines
127 B
Ruby
5 lines
127 B
Ruby
class AddGithubPathToArticles < ActiveRecord::Migration
|
|
def change
|
|
add_column :articles, :github_path, :string
|
|
end
|
|
end
|