View and edit SQL

0 records

CREATE TABLE mediaattribute (
	id INTEGER NOT NULL, 
	name VARCHAR(250), 
	type INTEGER, 
	PRIMARY KEY (id), 
	UNIQUE (id), 
	FOREIGN KEY(type) REFERENCES mediaattribute_type (id)
);