Sha256: 491c74e94c67982f50c18a8226469611727020d162c2f67439a0555137e2b743

Contents?: true

Size: 309 Bytes

Versions: 3

Compression:

Stored size: 309 Bytes

Contents

class CreateRoutepaths < ActiveRecord::Migration
  def change
    create_table :routepaths do |t|
      t.references :function, index: true, foreign_key: true
      t.string :controller, index: true
      t.string :action, index: true
      t.string :method, index: true

      t.timestamps
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
admin-sys-1.0.2 db/migrate/20131122021230_create_routepaths.rb
admin-sys-1.0.1 db/migrate/20131122021230_create_routepaths.rb
admin-sys-1.0.0 db/migrate/20131122021230_create_routepaths.rb