blob: 7aac11ad7d942501ca3394626a0fce26684df122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class CreateCategories < ActiveRecord::Migration
def self.up
create_table :categories do |t|
t.string :name
t.timestamps
end
end
def self.down
drop_table :categories
end
end
|