mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
172 B
Ruby
9 lines
172 B
Ruby
|
class CreateLicences < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :licences do |t|
|
||
|
t.string :name, null: false
|
||
|
t.text :description
|
||
|
end
|
||
|
end
|
||
|
end
|