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