main
1class CreateCategories < ActiveRecord::Migration
2 def change
3 create_table :categories do |t|
4 t.string :name
5 t.string :slug
6
7 t.timestamps
8 end
9 end
10end