beagle_app/db/migrate/20150123213421_create_t_cats.rb
Nicolas Bally 7b6cba2128 initial
2015-01-27 23:13:36 +01:00

12 lines
207 B
Ruby

class CreateTCats < ActiveRecord::Migration
def change
create_table :t_cats do |t|
t.string :name
t.string :slug
t.text :description
t.timestamps null: false
end
end
end