10 lines
162 B
Ruby
Executable File
10 lines
162 B
Ruby
Executable File
class CreateCategoria < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :categoria do |t|
|
|
t.string :nombre
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|