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