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