GeoRSS aggregator and Layar augmented reality server
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

8 行
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