1
0
Fork 0
dokkan-data-rails/db/migrate/20151006175227_create_characters.rb

9 lines
169 B
Ruby

class CreateCharacters < ActiveRecord::Migration
def change
create_table :characters do |t|
t.string :name
t.timestamps null: false
end
end
end