This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/db/migrate/20120407164816_create_feeds.rb

11 lines
168 B
Ruby

class CreateFeeds < ActiveRecord::Migration
def change
create_table :feeds do |t|
t.string :url
t.string :title
t.timestamps
end
end
end