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.

20130321173521_convert_feeds_layers_table_to_subscriptions.rb 238 B

1234567
  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