aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120126110946_create_referentials.rb
blob: 64af40135387781f951d5fac2db7070c08612f28 (plain)
1
2
3
4
5
6
7
8
9
10
class CreateReferentials < ActiveRecord::Migration
  def change
    create_table :referentials do |t|
      t.string :name
      t.string :slug

      t.timestamps
    end
  end
end