Class: CreateTags

Inherits:
Object
  • Object
show all
Defined in:
lib/db/migrate/20160913134552_create_tags.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
# File 'lib/db/migrate/20160913134552_create_tags.rb', line 2

def change
  create_table :tags do |t|
    t.string :name, index: true
  end
end