10 lines
168 B
Ruby
10 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
|