mirror of
https://github.com/Threnklyn/Klaus.git
synced 2026-05-18 20:23:28 +02:00
10 lines
155 B
Ruby
10 lines
155 B
Ruby
class CreateDocuments < ActiveRecord::Migration
|
|
def change
|
|
create_table :documents do |t|
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|