11 lines
193 B
Ruby
Executable File
11 lines
193 B
Ruby
Executable File
class CreateCertifications < ActiveRecord::Migration
|
|
def change
|
|
create_table :certifications do |t|
|
|
t.string :name
|
|
t.string :description
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|