docbrown/db/migrate/20170330184420_create_github_issues.rb
2018-02-28 16:11:08 -05:00

11 lines
278 B
Ruby

class CreateGithubIssues < ActiveRecord::Migration
def change
create_table :github_issues do |t|
t.string :url
t.string :type
t.string :issue_serialized, default: {}.to_yaml
t.string :processed_html
t.timestamps null: false
end
end
end