10 lines
169 B
Ruby
10 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
|