GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
238 B

  1. class ConvertFeedsLayersTableToSubscriptions < ActiveRecord::Migration
  2. def change
  3. rename_table :feeds_layers, :subscriptions
  4. add_column :subscriptions, :id, :primary_key
  5. add_index :subscriptions, :id, :name => "id"
  6. end
  7. end